comparison .zsh/01.aliases.zsh @ 0:c30d68fbd368

Initial import from svn.
author Augie Fackler <durin42@gmail.com>
date Wed, 26 Nov 2008 10:56:09 -0600
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c30d68fbd368
1 #aliases and funtions to act like them
2 function less() { command less -M "$@" }
3 function ll() { command ls -lFh "$@" }
4 function ls() { command ls -F "$@" }
5 function la() { command ls -aF "$@" }
6 function lla() { command ls -laFh "$@" }
7 function screen() { command screen -U "$@" }
8 function ipy() { command ipython "$@" }
9 function memacs() { command open -a Emacs "$@" }
10 alias vi='vim'