1 alias axine='xine -A null'
4 #alias bittorrent-curses='bittorrent-curses --max_upload_rate 10'
5 #alias bt='bittorrent-curses --max_upload_rate 10 --save_in . --save_incomplete_in .'
6 alias cdrecord='cdrecord -vvv -eject driveropts=burnfree'
7 alias duh='du . --max-depth=1 -h'
8 alias eclipse='eclipse-3.2 -vmargs -Xmx512m'
10 alias gdb='gdb --quiet'
11 alias gdbtui='gdbtui --quiet'
12 alias nohist='export HISTFILE=/dev/null'
14 if command -v elinks >/dev/null ; then
15 alias links='elinks -default-mime-type text/html'
17 elif command -v lynx >/dev/null ; then
18 alias lynx='lynx -nopause -accept_all_cookies -use_mouse'
20 alias minicom='minicom -w -c on'
21 alias nslookup='nslookup -sil'
23 alias p1d='patch -p1 --dry-run'
24 alias p1dr='patch -p1 --dry-run -R'
25 alias p1r='patch -p1 -R'
26 alias quake4='quake4 +set s_driver oss'
27 alias rrsync='rsync -Hav --inplace --progress'
29 sss() { aspell -a <<<"$*"; }
30 smplayer() { sudo -u smriti sh -c 'export DISPLAY=:0; xset s reset; exec mplayer "$@" >/dev/null 2>&1' sh "$@" ; }
31 svlc() { sudo -u smriti sh -c 'export DISPLAY=:0; xset s reset; exec vlc "$@" >/dev/null 2>&1' sh "$@" ; }
32 svnc() { sudo -u smriti sh -c 'export DISPLAY=:0; xset s reset; exec x11vnc -q -nopw' ; }
33 alias trc=transmission-remote-cli
36 alias wol-vapier='wakeonlan -i 192.168.1.255 00:25:22:64:19:79; wakeonlan -i 192.168.0.255 00:25:22:64:19:79'
39 # These guys keep changing their CLI because they hate their users.
50 case $(command ${cmd} --version) in
54 --PromptManager.in_template='>>> '
55 --PromptManager.out_template=''
56 --PromptManager.justify=False
61 command ${cmd} "${args[@]}" "$@"
63 ipython() { _ipython ${FUNCNAME}; }
64 ipython2() { _ipython ${FUNCNAME}; }
65 ipython3() { _ipython ${FUNCNAME}; }
68 local adk=/usr/local/src/android/adk/current/sdk
69 PATH+=":${adk}/tools:${adk}/platform-tools"
73 if [[ $# -eq 0 ]] ; then
75 elif [[ $# -eq 1 && $1 == "--" ]] ; then
83 if [[ $# -eq 1 ]] ; then
86 command dirs "$1" |& tail -1
87 command cd "$1" |& tail -1
100 set -- "$(dirs "+${1:1}")"
104 if command cd "$@" ; then
105 pushd -n "${PWD}" >/dev/null
108 alias cd='cd_history'
110 if [[ ${TERM} != "dumb" ]] ; then
111 export GREP_COLORS=ne #470810
112 alias grep='grep --colour=auto -d skip'
113 alias ls='ls --color=auto'
119 -e '/^new file mode /d' \
123 -e '/^retrieving/d' \
125 -e '/^Files .* differ$/d' \
126 -e '/^Binary files .* differ$/d' \
128 -e '/^Common subdirectories/d' \
129 -e '/^deleted file mode [0-9]*$/d' \
130 -e '/^+++/s:\t.*::' \
131 -e '/^---/s:\t.*::' \
143 [[ $# -gt 0 ]] && set -- "$@" -i
144 eval sed \"\$@\" $(printf -- ' -e "s|\&%s;|%q|g"' "${a[@]}")