- Расположить все файлы в ~/scripts/.
- Создать файл ~/scripts/constants.sh в который записать код установки переменных DEFAULT_PROJECT_PATH, EMAIL, MAIN
- Создать файл ~/scripts/constants.ps1 в который записать код установки переменных env:DEFAULT_PROJECT_PATH
- В bash выполнить
echo . ~/scripts/constants.sh > ~/.bashrc
echo . ~/scripts/base.sh >> ~/.bashrc
- В PowerShell выполнить
New-Item $profile -Type File -Force
Add-Content $profile '~/scripts/constants.ps1'
Add-Content $profile 'Import-Module ~/scripts/base.psm1'