14 lines
497 B
Plaintext
14 lines
497 B
Plaintext
# The Contents of this file will be directly related to the functioning of the alias files
|
|
|
|
# Variable for the cloned directory for these aliases
|
|
bash_aliases="/etc/bash_aliases"
|
|
|
|
# Pull aliases from git repo
|
|
alias alias-pull='git -C $bash_aliases pull && echo "Pulled $bash_aliases"'
|
|
|
|
# Reload bashrc which then sources this file
|
|
alias alias-reload='source ~/.bashrc && echo "Reloaded ~/.bashrc"'
|
|
|
|
# Run the alias Pull and Reload commands together
|
|
alias alias-update='alias-pull && alias-reload'
|