From: Mark Szymanski Date: Sun, 31 Oct 2010 20:30:53 +0000 (-0500) Subject: Added help for some more aliases X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=3511e9e2692e7f0cb2bb9d893bbbf2b996e7d1f7;p=common%2Fbash_it.git Added help for some more aliases --- diff --git a/aliases/general.aliases.bash b/aliases/general.aliases.bash index 396c03e..201a419 100644 --- a/aliases/general.aliases.bash +++ b/aliases/general.aliases.bash @@ -45,18 +45,23 @@ 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 " 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 " editor = $EDITOR" + echo " pager = $PAGER" + echo " piano = pianobar" + echo " q = exit" + echo " irc = $IRC_CLIENT" echo }