comparison .shell.d/01.aliases.sh @ 39:62bfb554ab85

Reorganize zsh files so that bash can work as well.
author Augie Fackler <durin42@gmail.com>
date Mon, 26 Jan 2009 13:21:00 -0600
parents .zsh/01.aliases.zsh@c30d68fbd368
children 7576736ca6fa
comparison
equal deleted inserted replaced
38:f70862dadf83 39:62bfb554ab85
1 #aliases and funtions to act like them
2 function less() {
3 command less -M "$@"
4 }
5 function ll() {
6 command ls -lFh "$@"
7 }
8 function ls() {
9 command ls -F "$@"
10 }
11 function la() {
12 command ls -aF "$@"
13 }
14 function lla() {
15 command ls -laFh "$@"
16 }
17 function screen() {
18 command screen -U "$@"
19 }
20 function ipy() {
21 command ipython "$@"
22 }
23 function memacs() {
24 command open -a Emacs "$@"
25 }
26 alias vi=vim