debian.plugin.zsh 6.62 KB
Newer Older
1
2
3
# Authors:
# https://github.com/AlexBio
# https://github.com/dbb
mapc's avatar
mapc committed
4
# https://github.com/Mappleconfusers
Daniel Bolton's avatar
Daniel Bolton committed
5
6
7
#
# Debian-related zsh aliases and functions for zsh

8
9
# Use aptitude if installed, or apt-get if not.
# You can just set apt_pref='apt-get' to override it.
10
if [[ -e $( which -p aptitude 2>&1 ) ]]; then
11
    apt_pref='aptitude'
12
    apt_upgr='safe-upgrade'
13
14
else
    apt_pref='apt-get'
15
    apt_upgr='upgrade'
16
fi
17
18

# Use sudo by default if it's installed
19
if [[ -e $( which -p sudo 2>&1 ) ]]; then
20
21
    use_sudo=1
fi
Daniel Bolton's avatar
Daniel Bolton committed
22
23

# Aliases ###################################################################
24
25
# These are for more obscure uses of apt-get and aptitude that aren't covered
# below.
26
27
alias age='apt-get'
alias api='aptitude'
Daniel Bolton's avatar
Daniel Bolton committed
28
29

# Some self-explanatory aliases
30
alias acs="apt-cache search"
Daniel Bolton's avatar
Daniel Bolton committed
31
alias aps='aptitude search'
32
33
alias as="aptitude -F \"* %p -> %d \n(%v/%V)\" \
		--no-gui --disable-columns search"	# search package
34
35
36
37
38
39
40

# apt-file
alias afs='apt-file search --regexp'


# These are apt-get only
alias asrc='apt-get source'
41
alias app='apt-cache policy'
42

43
# superuser operations ######################################################
44
if [[ $use_sudo -eq 1 ]]; then
45
# commands using sudo #######
46
47
48
49
    alias aac='sudo $apt_pref autoclean'
    alias abd='sudo $apt_pref build-dep'
    alias ac='sudo $apt_pref clean'
    alias ad='sudo $apt_pref update'
50
    alias adg='sudo $apt_pref update && sudo $apt_pref $apt_upgr'
51
    alias adu='sudo $apt_pref update && sudo $apt_pref dist-upgrade'
52
    alias afu='sudo apt-file update'
Canux's avatar
Canux committed
53
    alias au='sudo $apt_pref $apt_upgr'
54
    alias ai='sudo $apt_pref install'
55
56
57
    # Install all packages given on the command line while using only the first word of each line:
    # acs ... | ail
    alias ail="sed -e 's/  */ /g' -e 's/ *//' | cut -s -d ' ' -f 1 | "' xargs sudo $apt_pref install'
58
59
    alias ap='sudo $apt_pref purge'
    alias ar='sudo $apt_pref remove'
60

61
    # apt-get only
62
    alias ads='sudo apt-get dselect-upgrade'
63

64
65
66
    # Install all .deb files in the current directory.
    # Warning: you will need to put the glob in single quotes if you use:
    # glob_subst
67
68
    alias dia='sudo dpkg -i ./*.deb'
    alias di='sudo dpkg -i'
69
70

    # Remove ALL kernel images and headers EXCEPT the one in use
71
72
73
74
75
    alias kclean='sudo aptitude remove -P ?and(~i~nlinux-(ima|hea) \
        ?not(~n`uname -r`))'


# commands using su #########
76
else
77
    alias aac='su -ls \'$apt_pref autoclean\' root'
78
79
80
81
82
    abd() {
        cmd="su -lc '$apt_pref build-dep $@' root"
        print "$cmd"
        eval "$cmd"
    }
83
84
    alias ac='su -ls \'$apt_pref clean\' root'
    alias ad='su -lc \'$apt_pref update\' root'
85
    alias adg='su -lc \'$apt_pref update && aptitude $apt_upgr\' root'
86
    alias adu='su -lc \'$apt_pref update && aptitude dist-upgrade\' root'
87
    alias afu='su -lc "apt-file update"'
88
    alias ag='su -lc \'$apt_pref $apt_upgr\' root'
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
    ai() {
        cmd="su -lc 'aptitude -P install $@' root"
        print "$cmd"
        eval "$cmd"
    }
    ap() {
        cmd="su -lc '$apt_pref -P purge $@' root"
        print "$cmd"
        eval "$cmd"
    }
    ar() {
        cmd="su -lc '$apt_pref -P remove $@' root"
        print "$cmd"
        eval "$cmd"
    }

    # Install all .deb files in the current directory
    # Assumes glob_subst is off
107
108
    alias dia='su -lc "dpkg -i ./*.deb" root'
    alias di='su -lc "dpkg -i" root'
109

110
    # Remove ALL kernel images and headers EXCEPT the one in use
111
112
    alias kclean='su -lc '\''aptitude remove -P ?and(~i~nlinux-(ima|hea) \
        ?not(~n`uname -r`))'\'' root'
113
114
fi

115
116
# Completion ################################################################

117
118
119
120
121
122
123
124
#
# Registers a compdef for $1 that calls $apt_pref with the commands $2
# To do that it creates a new completion function called _apt_pref_$2
#
apt_pref_compdef() {
    local f fb
    f="_apt_pref_${2}"

mapc's avatar
mapc committed
125
    eval "function ${f}() {
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
        shift words; 
	service=\"\$apt_pref\"; 
	words=(\"\$apt_pref\" '$2' \$words); 
	((CURRENT++))
	test \"\${apt_pref}\" = 'aptitude' && _aptitude || _apt
    }"

    compdef "$f" "$1"
}

apt_pref_compdef aac "autoclean"
apt_pref_compdef abd "build-dep"
apt_pref_compdef ac  "clean"
apt_pref_compdef ad  "update"
apt_pref_compdef afu "update"
141
apt_pref_compdef ag  "$apt_upgr"
142
143
144
145
146
apt_pref_compdef ai  "install"
apt_pref_compdef ail "install"
apt_pref_compdef ap  "purge"
apt_pref_compdef ar  "remove"
apt_pref_compdef ads "dselect-upgrade"
Daniel Bolton's avatar
Daniel Bolton committed
147

148
# Misc. #####################################################################
Daniel Bolton's avatar
Daniel Bolton committed
149
150
151
152
153
154
# print all installed packages
alias allpkgs='aptitude search -F "%p" --disable-columns ~i'

# Create a basic .deb package
alias mydeb='time dpkg-buildpackage -rfakeroot -us -uc'

155

Daniel Bolton's avatar
Daniel Bolton committed
156
157
158
# Functions #################################################################
# create a simple script that can be used to 'duplicate' a system
apt-copy() {
159
160
    print '#!/bin/sh'"\n" > apt-copy.sh

161
    cmd='$apt_pref install'
Daniel Bolton's avatar
Daniel Bolton committed
162

163
164
165
    for p in ${(f)"$(aptitude search -F "%p" --disable-columns \~i)"}; {
        cmd="${cmd} ${p}"
    }
Daniel Bolton's avatar
Daniel Bolton committed
166

167
    print $cmd "\n" >> apt-copy.sh
Daniel Bolton's avatar
Daniel Bolton committed
168

169
    chmod +x apt-copy.sh
Daniel Bolton's avatar
Daniel Bolton committed
170
171
}

172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# Prints apt history
# Usage:
#   apt-history install
#   apt-history upgrade
#   apt-history remove
#   apt-history rollback
#   apt-history list
# Based On: http://linuxcommando.blogspot.com/2008/08/how-to-show-apt-log-history.html
apt-history () {
  case "$1" in
    install)
      zgrep --no-filename 'install ' $(ls -rt /var/log/dpkg*)
      ;;
    upgrade|remove)
      zgrep --no-filename $1 $(ls -rt /var/log/dpkg*)
      ;;
    rollback)
      zgrep --no-filename upgrade $(ls -rt /var/log/dpkg*) | \
        grep "$2" -A10000000 | \
        grep "$3" -B10000000 | \
        awk '{print $4"="$5}'
      ;;
    list)
195
      zgrep --no-filename '' $(ls -rt /var/log/dpkg*)
196
197
198
199
200
201
202
203
204
205
206
      ;;
    *)
      echo "Parameters:"
      echo " install - Lists all packages that have been installed."
      echo " upgrade - Lists all packages that have been upgraded."
      echo " remove - Lists all packages that have been removed."
      echo " rollback - Lists rollback information."
      echo " list - Lists all contains of dpkg logs."
      ;;
  esac
}
Daniel Bolton's avatar
Daniel Bolton committed
207
208

# Kernel-package building shortcut
209
210
kerndeb () {
    # temporarily unset MAKEFLAGS ( '-j3' will fail )
211
    MAKEFLAGS=$( print - $MAKEFLAGS | perl -pe 's/-j\s*[\d]+//g' )
212
    print '$MAKEFLAGS set to '"'$MAKEFLAGS'"
Daniel Bolton's avatar
Daniel Bolton committed
213
214
215
216
217
218
219
220
221
	appendage='-custom' # this shows up in $ (uname -r )
    revision=$(date +"%Y%m%d") # this shows up in the .deb file name

    make-kpkg clean

    time fakeroot make-kpkg --append-to-version "$appendage" --revision \
        "$revision" kernel_image kernel_headers
}

Josh Chih-Hsueh Huang's avatar
Josh Chih-Hsueh Huang committed
222
223
224
225
226
227
228
229
# List packages by size
function apt-list-packages {
    dpkg-query -W --showformat='${Installed-Size} ${Package} ${Status}\n' | \
    grep -v deinstall | \
    sort -n | \
    awk '{print $1" "$2}'
}