Create Update Mechanism
This commit is contained in:
parent
8a56e00d0c
commit
59aa5ff4d8
@ -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'
|
||||
|
||||
Loading…
Reference in New Issue
Block a user