15 lines
410 B
Bash
Executable File
15 lines
410 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if test -f ~/.zshrc; then
|
|
|
|
echo 'alias hlna="hlna.py"' >> ~/.zshrc
|
|
echo 'alias hlna-bot="hlna-bot.py"' >> ~/.zshrc
|
|
elif test -f ~/.config/fish/config.fish; then
|
|
echo 'alias hlna="hlna.py"' ~/.config/fish/config.fish
|
|
echo 'alias hlna-bot="hlna-bot.py"' ~/.config/fish/config.fish
|
|
else
|
|
cd ~/
|
|
echo 'alias hlna="hlna.py"' .bashrc
|
|
echo 'alias hlna-bot="hlna-bot.py"' .bashrc
|
|
source ~/.bashrc
|
|
fi
|