diff --git a/main.aliases b/main.aliases index ca746ee..adfba91 100644 --- a/main.aliases +++ b/main.aliases @@ -1,4 +1,13 @@ # 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'