]> 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:

pass -rfakeroot to d-buildpkg
[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: http://git.madduck.net/v/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 ll='ls -l'
36 alias l=ll
37 alias la='ls -a'
38 alias lla='ls -la'
39 alias lrt='ls -lrt'
40 alias lart='ls -lart'
41 # List only directories and symbolic links that point to directories
42 alias lsd='ls -ld *(-/DN)'
43
44 alias lsbig="ls -flh *(.OL[1,10])"
45 alias lssmall="ls -Srl *(.oL[1,10])"
46 alias lsnew="ls -rl *(D.om[1,10])"
47 alias lsold="ls -rtlh *(D.om[1,10])"
48
49 cd () { builtin cd "$@" && lrt }
50 #_cd_l() { ll }
51 #chpwd_functions+=_cd_l
52
53 alias egrep='egrep --color=auto -d skip'
54 alias fgrep='fgrep --color=auto -d skip'
55 alias grep='grep --color=auto -d skip'
56
57 alias mmv='noglob zmv -W'
58 alias zcp='zmv -C'
59 alias zln='zmv -L'
60 alias zgmv='zmv -p git-mv'
61
62 alias cal='cal -3'
63 alias ftp=lftp
64
65 alias mbug='bts show --mbox'
66 alias bug='BROWSER=www-browser bts show'
67
68 # handy documentation lookup on Debian
69 # from http://www.michael-prokop.at/computer/config/.zshrc
70 doc() { cd /usr/share/doc/$1 && ls }
71 _doc() { _files -W /usr/share/doc -/ }
72 compdef _doc doc
73
74 alias giti='git init && git add . && git commit -minitial\ checkin'
75
76 if whence mtail >/dev/null; then
77   alias t=mtail
78 elif whence tailf >/dev/null; then
79   alias t=tailf
80 else
81   alias t='tail -f'
82 fi
83 alias tsl='t /var/log/syslog'
84 alias lsl='sensible-pager /var/log/syslog'
85 alias tml='t /var/log/mail.log'
86 alias lml='sensible-pager /var/log/mail.log'
87 alias tal='t /var/log/auth.log'
88 alias lal='sensible-pager /var/log/auth.log'
89 alias tdl='t /var/log/daemon.log'
90 alias ldl='sensible-pager /var/log/daemon.log'
91 alias tkl='t /var/log/kern.log'
92 alias lkl='sensible-pager /var/log/kern.log'
93
94 alias px='ps afux'
95 alias mps='ps -ao user,pcpu,start,command'
96
97 alias bofh='fortune bofh-excuses'
98
99 autoload -U baseconv
100 alias b2d='baseconv 2 10'
101 alias d2b='baseconv 10 2'
102 alias d2h='baseconv 10 16'
103 alias h2d='baseconv 16 10'
104 alias d2o='baseconv 10 8'
105 alias o2d='baseconv 8 10'
106
107 alias sendmail=/usr/sbin/sendmail
108
109 _d() { dict $* }
110 d() { _d $* | sensible-pager }
111 the() { d -d moby-thesaurus $* }
112 typeset -A _LANGUAGES
113 _LANGUAGES[en]=eng
114 _LANGUAGES[de]=deu
115 _LANGUAGES[es]=spa
116 _LANGUAGES[fr]=fra
117 _LANGUAGES[it]=ita
118 _LANGUAGES[lt]=lat
119 for l0 in ${(k)_LANGUAGES}; do
120   for l1 in ${(k)_LANGUAGES}; do
121     eval "_${l0}-${l1}() { _d -d fd-${_LANGUAGES[$l0]}-${_LANGUAGES[$l1]} \$* }"
122     eval "${l0}-${l1}() { d -d fd-${_LANGUAGES[$l0]}-${_LANGUAGES[$l1]} \$* }"
123   done
124 done
125 unset '_LANGUAGES[en]'
126 for l in ${(k)_LANGUAGES}; do
127   eval "${l}() { (_${l}-en \$*; _en-${l} \$*) | more }"
128 done
129 unset _LANGUAGES
130
131 alias dpkg-buildpackage="dpkg-buildpackage -k$DEBKEYID -rfakeroot"
132
133 uc() { unicode --max=0 --colour=off "$@" | sensible-pager }
134
135 alias ipr='ip r'
136 alias ipa='ip a'
137 alias ipl='ip l'
138
139 alias btd='btdownloadheadless'
140
141 # vim:ft=zsh