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

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

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

# Aliases ###################################################################
21
22
23
# These are for more obscure uses of apt-get and aptitude that aren't covered
# below.
alias ag='apt-get'
24
alias ap='aptitude'
Daniel Bolton's avatar
Daniel Bolton committed
25
26

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

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


# These are apt-get only
alias asrc='apt-get source'
38
alias app='apt-cache policy'
39

40
# superuser operations ######################################################
41
if [[ $use_sudo -eq 1 ]]; then
42
# commands using sudo #######
43
44
45
46
47
48
    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'
    alias adg='sudo $apt_pref update && sudo $apt_pref upgrade'
    alias adu='sudo $apt_pref update && sudo $apt_pref dist-upgrade'
49
    alias afu='sudo apt-file update'
50
51
    alias ag='sudo $apt_pref upgrade'
    alias ai='sudo $apt_pref install'
52
53
54
    # 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'
55
56
    alias ap='sudo $apt_pref purge'
    alias ar='sudo $apt_pref remove'
57

58
    # apt-get only
59
    alias ads='sudo $apt_pref dselect-upgrade'
60

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

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


# commands using su #########
73
else
74
    alias aac='su -ls \'$apt_pref autoclean\' root'
75
76
77
78
79
    abd() {
        cmd="su -lc '$apt_pref build-dep $@' root"
        print "$cmd"
        eval "$cmd"
    }
80
81
82
83
    alias ac='su -ls \'$apt_pref clean\' root'
    alias ad='su -lc \'$apt_pref update\' root'
    alias adg='su -lc \'$apt_pref update && aptitude safe-upgrade\' root'
    alias adu='su -lc \'$apt_pref update && aptitude dist-upgrade\' root'
84
    alias afu='su -lc "apt-file update"'
85
    alias ag='su -lc \'$apt_pref safe-upgrade\' root'
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
    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
104
105
    alias dia='su -lc "dpkg -i ./*.deb" root'
    alias di='su -lc "dpkg -i" root'
106

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

Daniel Bolton's avatar
Daniel Bolton committed
112

113
# Misc. #####################################################################
Daniel Bolton's avatar
Daniel Bolton committed
114
115
116
117
118
119
# 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'

120

Daniel Bolton's avatar
Daniel Bolton committed
121
122
123
# Functions #################################################################
# create a simple script that can be used to 'duplicate' a system
apt-copy() {
124
125
    print '#!/bin/sh'"\n" > apt-copy.sh

126
    cmd='$apt_pref install'
Daniel Bolton's avatar
Daniel Bolton committed
127

128
129
130
    for p in ${(f)"$(aptitude search -F "%p" --disable-columns \~i)"}; {
        cmd="${cmd} ${p}"
    }
Daniel Bolton's avatar
Daniel Bolton committed
131

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

134
    chmod +x apt-copy.sh
Daniel Bolton's avatar
Daniel Bolton committed
135
136
}

137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# 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)
      zcat $(ls -rt /var/log/dpkg*)
      ;;
    *)
      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
172
173

# Kernel-package building shortcut
174
175
kerndeb () {
    # temporarily unset MAKEFLAGS ( '-j3' will fail )
176
    MAKEFLAGS=$( print - $MAKEFLAGS | perl -pe 's/-j\s*[\d]+//g' )
177
    print '$MAKEFLAGS set to '"'$MAKEFLAGS'"
Daniel Bolton's avatar
Daniel Bolton committed
178
179
180
181
182
183
184
185
186
	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
}