]> git.wh0rd.org Git - home.git/blob - .profile.d/aliases.sh
git-rb-catchup: more cleanups
[home.git] / .profile.d / aliases.sh
1 alias axine='xine -A null'
2 alias b='bzr'
3 alias bc='bc -q'
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'
9 alias g='git'
10 alias gdb='gdb --quiet'
11 alias gdbtui='gdbtui --quiet'
12 alias nohist='export HISTFILE=/dev/null'
13 alias kpdf='okular'
14 if command -v elinks >/dev/null ; then
15         alias links='elinks -default-mime-type text/html'
16         alias lynx=links
17 elif command -v lynx >/dev/null ; then
18         alias lynx='lynx -nopause -accept_all_cookies -use_mouse'
19 fi
20 alias minicom='minicom -w -c on'
21 alias nslookup='nslookup -sil'
22 alias p1='patch -p1'
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'
28 alias s='aspell -a'
29 sss() { aspell -a <<<"$*"; }
30 sdisp() { sudo -u smriti sh -c 'export DISPLAY=:0; xset s reset; exec "$0" "$@"' "$@" ; }
31 smplayer() { sdisp mplayer "$@" ; }
32 smpv() { sdisp mpv "$@" ; }
33 svlc() { sdisp vlc "$@" ; }
34 svnc() { sdisp x11vnc -q -nopw ; }
35 sweb() { sdisp google-chrome-beta "$@" ; }
36 sxdg() { sdisp xdg-open "$@" ; }
37 alias trc=tremc
38 alias xine='xine -l'
39
40 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'
41
42 _ipython() {
43         # These guys keep changing their CLI because they hate their users.
44         local cmd=$1; shift
45         local args=(
46                 --no-banner
47                 --no-confirm-exit
48                 --pdb
49                 --nosep
50                 --term-title
51                 --pprint
52         )
53
54         case $(command ${cmd} --version) in
55         0*) ;;
56         [123]*)
57                 args+=(
58                         --PromptManager.in_template='>>> '
59                         --PromptManager.out_template=''
60                         --PromptManager.justify=False
61                 )
62                 ;;
63         esac
64
65         command ${cmd} "${args[@]}" "$@"
66 }
67 ipython()  { _ipython ${FUNCNAME}; }
68 ipython2() { _ipython ${FUNCNAME}; }
69 ipython3() { _ipython ${FUNCNAME}; }
70
71 adk_path() {
72         local adk=/usr/local/src/android/adk/current/sdk
73         PATH+=":${adk}/tools:${adk}/platform-tools"
74 }
75
76 pd() {
77         if [[ $# -eq 0 ]] ; then
78                 popd
79         elif [[ $# -eq 1 && $1 == "--" ]] ; then
80                 dirs -v
81         else
82                 pushd "$@"
83         fi
84 }
85
86 cd_history() {
87         if [[ $# -eq 1 ]] ; then
88                 case $1 in
89                 -h)
90                         command dirs "$1" |& tail -1
91                         command cd "$1" |& tail -1
92                         return
93                         ;;
94                 --help)
95                         command dirs "$1"
96                         command cd "$1"
97                         return
98                         ;;
99                 -[clpv])
100                         command dirs "$1"
101                         return
102                         ;;
103                 -[0-9]*)
104                         set -- "$(dirs "+${1:1}")"
105                         ;;
106                 esac
107         fi
108
109         if command cd "$@" ; then
110                 pushd -n "${PWD}" >/dev/null
111         else
112                 local ret=$?
113
114                 if [[ $# -gt 1 ]] ; then
115                         # The `cd` above should have shown an error message for us.
116                         local arg first_arg="$1"
117                         while [[ $# -gt 0 ]] ; do
118                                 arg="$1"
119                                 shift
120                                 if [[ -d ${arg} ]] ; then
121                                         if [[ $# -gt 0 ]] ; then
122                                                 printf 'cd: remaining: %s\n' "$@" >&2
123                                         fi
124                                         printf 'cd: entering: %s\n' "${arg}" >&2
125                                         cd_history "${arg}"
126                                         return
127                                 else
128                                         printf 'cd: skipping: %s\n' "${arg}" >&2
129                                 fi
130                         done
131                         # If we're still here, then we didn't cd anywhere.
132                         echo "cd: cwd is unchanged!" >&2
133                 fi
134
135                 return ${ret}
136         fi
137 }
138 alias cd='cd_history'
139
140 if [[ ${TERM} != "dumb" ]] ; then
141         export GREP_COLORS=ne #470810
142         alias grep='grep --colour=auto -d skip'
143         alias ls='ls --color=auto'
144 fi
145
146 scrub_patch() {
147         sed -i \
148                 -e '/^index /d' \
149                 -e '/^new file mode /d' \
150                 -e '/^Index:/d' \
151                 -e '/^=========/d' \
152                 -e '/^RCS file:/d' \
153                 -e '/^retrieving/d' \
154                 -e '/^diff/d' \
155                 -e '/^Files .* differ$/d' \
156                 -e '/^Binary files .* differ$/d' \
157                 -e '/^Only in /d' \
158                 -e '/^Common subdirectories/d' \
159                 -e '/^deleted file mode [0-9]*$/d' \
160                 -e '/^+++/s:\t.*::' \
161                 -e '/^---/s:\t.*::' \
162                 "$@"
163 }
164
165 scrub_html() {
166         local a=(
167                 'lt'    '<'
168                 'gt'    '>'
169                 'nbsp'  ' '
170                 'amp'   '&'
171                 'quot'  '"'
172         )
173         [[ $# -gt 0 ]] && set -- "$@" -i
174         eval sed \"\$@\" $(printf -- ' -e "s|\&%s;|%q|g"' "${a[@]}")
175 }