debian.plugin.zsh 4.21 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
9
10
11
12
13
# Use aptitude if installed, or apt-get if not.
# You can just set apt_pref='apt-get' to override it.
if [[ -e $( which aptitude ) ]]; then
    apt_pref='aptitude'
else
    apt_pref='apt-get'
fi
14
15
16
17
18

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

# Aliases ###################################################################
21
22
23
24
# These are for more obscure uses of apt-get and aptitude that aren't covered
# below.
alias ag='apt-get'
alias at='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
38
39

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


# These are apt-get only
alias asrc='apt-get source'
alias ap='apt-cache policy'

40
# superuser operations ######################################################
41
if [[ $use_sudo -eq 1 ]]; then
42
43
44
45
# commands using sudo #######
    alias aac="sudo $apt_pref autoclean"
    alias abd="sudo $apt_pref build-dep"
    alias ac="sudo $apt_pref clean"
46
    alias ad="sudo $apt_pref update"
47
48
    alias adg="sudo $apt_pref update && sudo $apt_pref upgrade"
    alias adu="sudo $apt_pref update && sudo $apt_pref dist-upgrade"
49
50
    alias afu='sudo apt-file update'
    alias ag="sudo $apt_pref upgrade"
51
    alias ai="sudo $apt_pref install"
52
53
54
    alias ap="sudo $apt_pref purge"
    alias ar="sudo $apt_pref remove"

55
56
    # apt-get only
    alias ads="sudo $apt_pref dselect-upgrade"
57
58
59
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
    alias di='sudo dpkg -i ./*.deb'

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


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

102
    # Remove ALL kernel images and headers EXCEPT the one in use
103
104
    alias kclean='su -lc '\''aptitude remove -P ?and(~i~nlinux-(ima|hea) \
        ?not(~n`uname -r`))'\'' root'
105
106
fi

Daniel Bolton's avatar
Daniel Bolton committed
107

108
# Misc. #####################################################################
Daniel Bolton's avatar
Daniel Bolton committed
109
110
111
112
113
114
# 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'

115

Daniel Bolton's avatar
Daniel Bolton committed
116
117
118
119
120
121



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

Daniel Bolton's avatar
Daniel Bolton committed
124
    cmd="$apt_pref install "
Daniel Bolton's avatar
Daniel Bolton committed
125

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

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

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


# Kernel-package building shortcut
137
138
139
140
kerndeb () {
    # temporarily unset MAKEFLAGS ( '-j3' will fail )
    MAKEFLAGS=$( print - $MAKEFLAGS | perl -pe 's/-j\s*[\d]+//g' )		
    print '$MAKEFLAGS set to '"'$MAKEFLAGS'"
Daniel Bolton's avatar
Daniel Bolton committed
141
142
143
144
145
146
147
148
149
	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
}