echo
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 " aliases-help Generic list of aliases."
+
echo
}
\ No newline at end of file
# Directory
alias md='mkdir -p'
alias rd=rmdir
-alias d='dirs -v'
\ No newline at end of file
+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
+}
\ No newline at end of file