1
0
Fork 0

Add scriptupdate alias to update common configs

main
Marissa Staib 5 years ago committed by GitHub
parent f14b12efb9
commit 05b6de6494
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      .bash_aliases

@ -43,6 +43,15 @@ function bashreload()
source "$HOME"/.bashrc
}
function scriptupdate()
{
(
cd "$( dirname "$(realpath -e "${BASH_SOURCE[0]}")" )"
git pull
)
bashreload
}
function man ()
{
command man "$@" 2>/dev/null || builtin help -m "$@" 2>/dev/null || command man "$@"

Loading…
Cancel
Save