Added a generic aliases help
authorRobert R Evans <robert@codewranglers.org>
Sat, 2 Oct 2010 22:29:23 +0000 (15:29 -0700)
committerRobert R Evans <robert@codewranglers.org>
Sat, 2 Oct 2010 22:29:23 +0000 (15:29 -0700)
bash_it.sh
lib/aliases.bash

index 3f52aba..78e32be 100644 (file)
@@ -60,5 +60,7 @@ function bash-it() {
   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
index 4152374..49e89ce 100644 (file)
@@ -20,4 +20,23 @@ alias h='history'
 # 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