Added a generic aliases help
parent
070107ab95
commit
5e0e86f705
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
@ -21,3 +21,22 @@ alias h='history'
|
||||||
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
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue