-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_aliases_apt
188 lines (162 loc) · 5.59 KB
/
.bash_aliases_apt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
# kate: hl Bash
# Authors:
# https://github.com/AlexBio
# https://github.com/dbb
#
# Debian-related zsh aliases and functions for zsh
# Use aptitude if installed, or apt-get if not.
# You can just set apt-get='apt-get' to override it.
# Use sudo by default if it's installed
# if [[ -e $( which sudo ) ]]; then
use_sudo=1
# fi
# Aliases ###################################################################
# These are for more obscure uses of apt-get and aptitude that aren't covered
# below.
alias ag='apt-get'
alias at='aptitude'
# Some self-explanatory aliases
alias acs='apt-cache search'
alias acsn='apt-cache search --names-only'
#alias aps='aptitude search'
#alias as="aptitude -F \"* %p -> %d \n(%v/%V)\" --no-gui --disable-columns search" # search package
function acf() {
if [ -z "$1" ] ; then
echo $0 regex filter >&2
return 1
elif [ -z "$2" ] ; then
apt-cache search "$1" | grep -i --color=always "$1"
else
apt-cache search "$1" | grep -i --color=always "$2"
fi
}
# apt-file
alias afs='apt-file search'
alias afl='apt-file list'
# These are apt-get only
alias asrc='apt-get source'
alias ap='apt-cache policy'
# superuser operations ######################################################
if [[ $use_sudo -eq 1 ]]; then
# commands using sudo #######
alias aac='sudo apt-get autoclean'
alias abd='sudo apt-get build-dep'
alias ac='sudo apt-get clean'
alias ad='sudo apt-get update'
alias adg='sudo apt-get update && sudo apt-get upgrade'
alias adu='sudo apt-get update && sudo apt-get dist-upgrade'
alias afu='sudo apt-file update'
alias ag='sudo apt-get upgrade'
alias ai='sudo apt-get install'
# 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-get install'
alias ap='sudo apt-get purge'
alias ar='sudo apt-get remove'
# apt-get only
alias ads='sudo apt-get dselect-upgrade'
# 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
#alias kclean='sudo aptitude remove -P ?and(~i~nlinux-(ima|hea) ?not(~n`uname -r`))'
# commands using su #########
else
alias aac="su -ls 'apt-get autoclean' root"
function abd() {
cmd="su -lc 'apt-get build-dep $@' root"
print "$cmd"
eval "$cmd"
}
alias ac="su -ls 'apt-get clean' root"
alias ad="su -lc 'apt-get update' root"
alias adg="su -lc 'apt-get update && aptitude safe-upgrade' root"
alias adu="su -lc 'apt-get update && aptitude dist-upgrade' root"
alias afu='su -lc "apt-file update"'
alias ag="su -lc 'apt-get safe-upgrade' root"
function ai() {
cmd="su -lc 'aptitude -P install $@' root"
print "$cmd"
eval "$cmd"
}
function ap() {
cmd="su -lc 'apt-get -P purge $@' root"
print "$cmd"
eval "$cmd"
}
function ar() {
cmd="su -lc 'apt-get -P remove $@' root"
print "$cmd"
eval "$cmd"
}
# Install all .deb files in the current directory
# Assumes glob_subst is off
alias di='su -lc "dpkg -i ./*.deb" root'
# Remove ALL kernel images and headers EXCEPT the one in use
#alias kclean='su -lc '\''aptitude remove -P ?and(~i~nlinux-(ima|hea) ?not(~n`uname -r`))'\'' root'
fi
# Misc. #####################################################################
# 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'
# Functions #################################################################
# create a simple script that can be used to 'duplicate' a system
apt-copy() {
print '#!/bin/sh'"\n" > apt-copy.sh
cmd='apt-get install'
for p in ${(f)"$(aptitude search -F "%p" --disable-columns \~i)"}; {
cmd="${cmd} ${p}"
}
print $cmd "\n" >> apt-copy.sh
chmod +x apt-copy.sh
}
# 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
}
# Kernel-package building shortcut
#kerndeb () {
# # temporarily unset MAKEFLAGS ( '-j3' will fail )
# MAKEFLAGS=$( print - $MAKEFLAGS | perl -pe 's/-j\s*[\d]+//g' )
# print '$MAKEFLAGS set to '"'$MAKEFLAGS'"
# 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
#}