fac74012 |
# Authors:
# https://github.com/AlexBio
# https://github.com/dbb |
ce41d0e5 |
#
# Debian-related zsh aliases and functions for zsh
|
65393b4b |
# 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 |
fac74012 |
# Use sudo by default if it's installed
if [[ -e $( which sudo ) ]]; then
use_sudo=1
fi |
ce41d0e5 |
# Aliases ################################################################### |
65393b4b |
# These are for more obscure uses of apt-get and aptitude that aren't covered
# below.
alias ag='apt-get'
alias at='aptitude' |
ce41d0e5 |
# Some self-explanatory aliases |
749feb27 |
alias acs="apt-cache search" |
ce41d0e5 |
alias aps='aptitude search' |
749feb27 |
alias as="aptitude -F \"* %p -> %d \n(%v/%V)\" \
--no-gui --disable-columns search" # search package |
fac74012 |
# apt-file
alias afs='apt-file search --regexp'
# These are apt-get only
alias asrc='apt-get source'
alias ap='apt-cache policy'
|
65393b4b |
# superuser operations ###################################################### |
fac74012 |
if [[ $use_sudo -eq 1 ]]; then |
65393b4b |
# commands using sudo #######
alias aac="sudo $apt_pref autoclean"
alias abd="sudo $apt_pref build-dep"
alias ac="sudo $apt_pref clean" |
fac74012 |
alias ad="sudo $apt_pref update" |
65393b4b |
alias adg="sudo $apt_pref update && sudo $apt_pref upgrade"
alias adu="sudo $apt_pref update && sudo $apt_pref dist-upgrade" |
fac74012 |
alias afu='sudo apt-file update'
alias ag="sudo $apt_pref upgrade" |
65393b4b |
alias ai="sudo $apt_pref install" |
fac74012 |
alias ap="sudo $apt_pref purge"
alias ar="sudo $apt_pref remove"
|
65393b4b |
# apt-get only
alias ads="sudo $apt_pref dselect-upgrade" |
fac74012 |
# 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 |
65393b4b |
alias kclean='sudo aptitude remove -P ?and(~i~nlinux-(ima|hea) \
?not(~n`uname -r`))'
# commands using su ######### |
fac74012 |
else |
65393b4b |
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' |
fac74012 |
alias ad='su -lc "'"$apt_pref"' update" root' |
65393b4b |
alias adg='su -lc "'"$apt_pref"' update && aptitude safe-upgrade" root'
alias adu='su -lc "'"$apt_pref"' update && aptitude dist-upgrade" root' |
fac74012 |
alias afu='su -lc "apt-file update"'
alias ag='su -lc "'"$apt_pref"' safe-upgrade" root' |
65393b4b |
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 |
fac74012 |
alias di='su -lc "dpkg -i ./*.deb" root' |
65393b4b |
|
fac74012 |
# Remove ALL kernel images and headers EXCEPT the one in use |
65393b4b |
alias kclean='su -lc '\''aptitude remove -P ?and(~i~nlinux-(ima|hea) \
?not(~n`uname -r`))'\'' root' |
fac74012 |
fi
|
ce41d0e5 |
|
65393b4b |
# Misc. ##################################################################### |
ce41d0e5 |
# 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'
|
fac74012 |
|
ce41d0e5 |
# Functions #################################################################
# create a simple script that can be used to 'duplicate' a system
apt-copy() { |
65393b4b |
print '#!/bin/sh'"\n" > apt-copy.sh
|
d3116d4f |
cmd="$apt_pref install " |
ce41d0e5 |
|
65393b4b |
for p in ${(f)"$(aptitude search -F "%p" --disable-columns \~i)"}; {
cmd="${cmd} ${p}"
} |
ce41d0e5 |
|
65393b4b |
print $cmd "\n" >> apt-copy.sh |
ce41d0e5 |
|
65393b4b |
chmod +x apt-copy.sh |
ce41d0e5 |
}
# Kernel-package building shortcut |
749feb27 |
kerndeb () {
# temporarily unset MAKEFLAGS ( '-j3' will fail )
MAKEFLAGS=$( print - $MAKEFLAGS | perl -pe 's/-j\s*[\d]+//g' )
print '$MAKEFLAGS set to '"'$MAKEFLAGS'" |
ce41d0e5 |
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
}
|