Added a generic aliases help

pull/3/head
Robert R Evans 2010-10-02 15:29:23 -07:00
parent 070107ab95
commit 5e0e86f705
2 changed files with 22 additions and 1 deletions

View File

@ -60,5 +60,7 @@ function bash-it() {
echo echo
echo " rails-help This will list out all the aliases you can use with rails." echo " rails-help This will list out all the aliases you can use with rails."
echo " git-help This will list out all the aliases you can use with git." echo " git-help This will list out all the aliases you can use with git."
echo " aliases-help Generic list of aliases."
echo echo
} }

View File

@ -20,4 +20,23 @@ alias h='history'
# Directory # Directory
alias md='mkdir -p' alias md='mkdir -p'
alias rd=rmdir alias rd=rmdir
alias d='dirs -v' alias d='dirs -v'
function aliases-help() {
echo "Generic Alias Usage"
echo
echo " sl = ls"
echo " ls = ls -G"
echo " la = ls -AF"
echo " ll = ls -al"
echo " l = ls -a"
echo " c/k = clear"
echo " .. = cd .."
echo " ... = cd ../.."
echo " - = cd -"
echo " h = history"
echo " md = mkdir -p"
echo " rd = rmdir"
echo " d = dirs -v"
echo
}