-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaliases.bash
More file actions
26 lines (19 loc) · 754 Bytes
/
aliases.bash
File metadata and controls
26 lines (19 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
fi
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
alias hgcleanup='hg status -un `hg root` | xargs rm -f'
alias edwin='scheme -edwin -edit'
alias log='cd ~/src/log; emacs postkid18.xml &'
alias appserver='python /home/bschmeck/appengine/dev_appserver.py'
# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
alias list-wifi='nmcli -f in-use,ssid,bssid,mode,chan,rate,signal device wifi list'