#!/bin/bash pushd "${BASH_SOURCE%/*}" > /dev/null; if ! grep "\baliae\b" ~/.bashrc > /dev/null then { echo '# aliae'; echo 'eval "$(aliae init bash)"'; echo ""; } >> ~/.bashrc; fi; profileFile="$(pwsh -c '$PROFILE')"; if [ ! -f "$profileFile" ] || ! grep "\baliae\b" "$profileFile" > /dev/null then pwsh "./install.ps1"; fi; echo 'aliae init fish | source' | sudo tee /etc/fish/conf.d/aliae.fish > /dev/null; cp aliae.yml ~/.aliae.yaml; popd > /dev/null;