]> git.madduck.net Git - etc/zsh.git/blob - .zsh/zshrc/30_aliases

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

19fdb7c9ae67798cbf6af5b2d7e5c12a1a66c69b
[etc/zsh.git] / .zsh / zshrc / 30_aliases
1 # zshrc/30_aliases
2 #
3 # Defines command shortcuts
4 #
5 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
6 # Released under the terms of the Artistic Licence 2.0
7 #
8 # Source repository: git://git.madduck.net/etc/zsh.git
9 #
10
11 alias mv='nocorrect mv'
12 alias cp='nocorrect cp'
13 alias ln='nocorrect ln'
14 alias mkdir='nocorrect mkdir'
15 alias rm='nocorrect rm'
16
17 alias find='noglob find'
18 alias w3m='noglob w3m -no-mouse'
19 alias links='noglob links'
20 alias wb='noglob www-browser'
21 alias wget='noglob wget'
22 alias curl='noglob curl'
23 alias apt-cache='noglob apt-cache'
24 alias locate='noglob locate'
25
26 local _USER_AGENT="Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.14) Gecko/20080404 Iceweasel/2.0.0.14 (Debian-2.0.0.14-2)"
27 alias swget="noglob wget --user-agent='$USER_AGENT'"
28
29 typeset -a _ls_opts; _ls_opts=(-bC --color=auto)
30 command ls --group-directories-first >/dev/null 2>&1 \
31   && _ls_opts+=--group-directories-first
32 # I prefer POSIX collation for ls
33 alias ls="LC_COLLATE=POSIX ls $_ls_opts"
34
35 alias l='ls --time-style=+%Y%m%d.%H%M -gG'
36 alias ll='ls -l'
37 alias la='ls -a'
38 alias lla='ls -la'
39 alias lt='ls -lt'
40 alias lrt='ls -lrt'
41 alias lat='ls -lat'
42 alias lart='ls -lart'
43 # List only directories and symbolic links that point to directories
44 alias lsd='ll -d *(-/DN)'
45
46 alias lscontext=l
47 cd () { __CHPWD_RUN_FIRST=lscontext && builtin cd "$@" && unset __CHPWD_RUN_FIRST }
48 #_cd_l() { ll }
49 #chpwd_functions+=_cd_l
50
51 # #183394
52 alias w='w|cat'
53
54 alias egrep='egrep --color=auto -d skip'
55 alias fgrep='fgrep --color=auto -d skip'
56 alias grep='grep --color=auto -d skip'
57
58 alias mmv='noglob zmv -W'
59 alias zcp='zmv -C'
60 alias zln='zmv -L'
61 alias zgmv='zmv -p git-mv'
62
63 alias cal='cal -3'
64 alias ftp=lftp
65
66 alias mbug='bts show --mbox'
67 alias bug='BROWSER=www-browser bts show'
68
69 # handy documentation lookup on Debian
70 # from http://www.michael-prokop.at/computer/config/.zshrc
71 doc() { cd /usr/share/doc/$1 && ls }
72 _doc() { _files -W /usr/share/doc -/ }
73 compdef _doc doc
74
75 alias giti='git init && git add . && git commit -minitial\ checkin && git tag orig'
76
77 if whence mtail >/dev/null; then
78   alias t=mtail
79 elif whence tailf >/dev/null; then
80   alias t=tailf
81 else
82   alias t='tail -f'
83 fi
84 alias tsl='t /var/log/syslog'
85 alias lsl='sensible-pager /var/log/syslog'
86 alias tml='t /var/log/mail.log'
87 alias lml='sensible-pager /var/log/mail.log'
88 alias tal='t /var/log/auth.log'
89 alias lal='sensible-pager /var/log/auth.log'
90 alias tdl='t /var/log/daemon.log'
91 alias ldl='sensible-pager /var/log/daemon.log'
92 alias tkl='t /var/log/kern.log'
93 alias lkl='sensible-pager /var/log/kern.log'
94
95 alias px='ps afux'
96 alias mps='ps -ao user,pcpu,start,command'
97
98 alias bofh='fortune bofh-excuses'
99
100 autoload -U baseconv
101 alias b2d='baseconv 2 10'
102 alias d2b='baseconv 10 2'
103 alias d2h='baseconv 10 16'
104 alias h2d='baseconv 16 10'
105 alias d2o='baseconv 10 8'
106 alias o2d='baseconv 8 10'
107
108 alias sendmail=/usr/sbin/sendmail
109
110 _d() { dict $* }
111 d() { _d $* | sensible-pager }
112 the() { d -d moby-thesaurus $* }
113 typeset -A _LANGUAGES
114 _LANGUAGES[en]=eng
115 _LANGUAGES[de]=deu
116 _LANGUAGES[es]=spa
117 _LANGUAGES[fr]=fra
118 _LANGUAGES[it]=ita
119 _LANGUAGES[lt]=lat
120 for l0 in ${(k)_LANGUAGES}; do
121   for l1 in ${(k)_LANGUAGES}; do
122     eval "_${l0}-${l1}() { _d -d fd-${_LANGUAGES[$l0]}-${_LANGUAGES[$l1]} \$* }"
123     eval "${l0}-${l1}() { d -d fd-${_LANGUAGES[$l0]}-${_LANGUAGES[$l1]} \$* }"
124   done
125 done
126 unset '_LANGUAGES[en]'
127 for l in ${(k)_LANGUAGES}; do
128   eval "${l}() { (_${l}-en \$*; _en-${l} \$*) | more }"
129 done
130 unset _LANGUAGES
131
132 alias dpkg-buildpackage="dpkg-buildpackage -k$DEBKEYID -rfakeroot"
133
134 bugsub() { echo X-debbugs-autosubscribe: madduck | sendmail -f $DEBEMAIL ${1:?No bug number}-subscribe@bugs.debian.org }
135 bugunsub() { sendmail -f $DEBEMAIL ${1:?No bug number}-unsubscribe@bugs.debian.org </dev/null }
136 ptssub() { echo subscribe ${1:?E: no package name given.} | sendmail -f ${2:-$DEBEMAIL} pts@qa.debian.org }
137 ptsunsub() { echo unsubscribe ${1:?E: no package name given.} | sendmail -f ${2:-$DEBEMAIL} pts@qa.debian.org }
138 qasub() { echo subscribe ${1:?E: no package name given.} ${2:-unspecifed} | sendmail -f $DEBEMAIL ddpo@qa.debian.org }
139 qaunsub() { echo unsubscribe ${1:?E: no package name given.} ${2:-unspecifed} | sendmail -f $DEBEMAIL ddpo@qa.debian.org }
140
141 uc() { unicode --max=0 --colour=off "$@" | sensible-pager }
142
143 alias ipr='ip r'
144 alias ipa='ip a'
145 alias ipl='ip l'
146
147 alias btd='btdownloadheadless'
148
149 alias mdtest='swaks -s localhost -t'
150
151 if whence devtodo >/dev/null; then
152   _devtodo_on_chpwd() { 
153     local out; out="$(devtodo)"
154     [[ -n $out ]] && print "todo:\n$out"
155   }
156   chpwd_functions+=_devtodo_on_chpwd
157 fi
158
159 # vim:ft=zsh