debian.plugin.zsh 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. # Use aptitude or apt if installed, fallback is apt-get
  2. # You can just set apt_pref='apt-get' to override it.
  3. if [[ -z $apt_pref || -z $apt_upgr ]]; then
  4. if [[ -e $commands[aptitude] ]]; then
  5. apt_pref='aptitude'
  6. apt_upgr='safe-upgrade'
  7. elif [[ -e $commands[apt] ]]; then
  8. apt_pref='apt'
  9. apt_upgr='upgrade'
  10. else
  11. apt_pref='apt-get'
  12. apt_upgr='upgrade'
  13. fi
  14. fi
  15. # Use sudo by default if it's installed
  16. if [[ -e $commands[sudo] ]]; then
  17. use_sudo=1
  18. fi
  19. # Aliases ###################################################################
  20. # These are for more obscure uses of apt-get and aptitude that aren't covered
  21. # below.
  22. alias age='apt-get'
  23. alias api='aptitude'
  24. # Some self-explanatory aliases
  25. alias acs="apt-cache search"
  26. alias aps='aptitude search'
  27. alias as="aptitude -F '* %p -> %d \n(%v/%V)' --no-gui --disable-columns search"
  28. # apt-file
  29. alias afs='apt-file search --regexp'
  30. # These are apt-get only
  31. alias asrc='apt-get source'
  32. alias app='apt-cache policy'
  33. # superuser operations ######################################################
  34. if [[ $use_sudo -eq 1 ]]; then
  35. # commands using sudo #######
  36. alias aac="sudo $apt_pref autoclean"
  37. alias abd="sudo $apt_pref build-dep"
  38. alias ac="sudo $apt_pref clean"
  39. alias ad="sudo $apt_pref update"
  40. alias adg="sudo $apt_pref update && sudo $apt_pref $apt_upgr"
  41. alias adu="sudo $apt_pref update && sudo $apt_pref dist-upgrade"
  42. alias afu="sudo apt-file update"
  43. alias au="sudo $apt_pref $apt_upgr"
  44. alias ai="sudo $apt_pref install"
  45. # Install all packages given on the command line while using only the first word of each line:
  46. # acs ... | ail
  47. alias ail="sed -e 's/ */ /g' -e 's/ *//' | cut -s -d ' ' -f 1 | xargs sudo $apt_pref install"
  48. alias ap="sudo $apt_pref purge"
  49. alias ar="sudo $apt_pref remove"
  50. # apt-get only
  51. alias ads="sudo apt-get dselect-upgrade"
  52. # Install all .deb files in the current directory.
  53. # Warning: you will need to put the glob in single quotes if you use:
  54. # glob_subst
  55. alias dia="sudo dpkg -i ./*.deb"
  56. alias di="sudo dpkg -i"
  57. # Remove ALL kernel images and headers EXCEPT the one in use
  58. alias kclean='sudo aptitude remove -P "?and(~i~nlinux-(ima|hea) ?not(~n$(uname -r)))"'
  59. # commands using su #########
  60. else
  61. alias aac="su -ls '$apt_pref autoclean' root"
  62. function abd() {
  63. cmd="su -lc '$apt_pref build-dep $@' root"
  64. print "$cmd"
  65. eval "$cmd"
  66. }
  67. alias ac="su -ls '$apt_pref clean' root"
  68. alias ad="su -lc '$apt_pref update' root"
  69. alias adg="su -lc '$apt_pref update && aptitude $apt_upgr' root"
  70. alias adu="su -lc '$apt_pref update && aptitude dist-upgrade' root"
  71. alias afu="su -lc '$apt-file update'"
  72. alias au="su -lc '$apt_pref $apt_upgr' root"
  73. function ai() {
  74. cmd="su -lc 'aptitude -P install $@' root"
  75. print "$cmd"
  76. eval "$cmd"
  77. }
  78. function ap() {
  79. cmd="su -lc '$apt_pref -P purge $@' root"
  80. print "$cmd"
  81. eval "$cmd"
  82. }
  83. function ar() {
  84. cmd="su -lc '$apt_pref -P remove $@' root"
  85. print "$cmd"
  86. eval "$cmd"
  87. }
  88. # Install all .deb files in the current directory
  89. # Assumes glob_subst is off
  90. alias dia='su -lc "dpkg -i ./*.deb" root'
  91. alias di='su -lc "dpkg -i" root'
  92. # Remove ALL kernel images and headers EXCEPT the one in use
  93. alias kclean='su -lc "aptitude remove -P \"?and(~i~nlinux-(ima|hea) ?not(~n$(uname -r)))\"" root'
  94. fi
  95. # Completion ################################################################
  96. #
  97. # Registers a compdef for $1 that calls $apt_pref with the commands $2
  98. # To do that it creates a new completion function called _apt_pref_$2
  99. #
  100. function apt_pref_compdef() {
  101. local f fb
  102. f="_apt_pref_${2}"
  103. eval "function ${f}() {
  104. shift words;
  105. service=\"\$apt_pref\";
  106. words=(\"\$apt_pref\" '$2' \$words);
  107. ((CURRENT++))
  108. test \"\${apt_pref}\" = 'aptitude' && _aptitude || _apt
  109. }"
  110. compdef "$f" "$1"
  111. }
  112. apt_pref_compdef aac "autoclean"
  113. apt_pref_compdef abd "build-dep"
  114. apt_pref_compdef ac "clean"
  115. apt_pref_compdef ad "update"
  116. apt_pref_compdef afu "update"
  117. apt_pref_compdef au "$apt_upgr"
  118. apt_pref_compdef ai "install"
  119. apt_pref_compdef ail "install"
  120. apt_pref_compdef ap "purge"
  121. apt_pref_compdef ar "remove"
  122. apt_pref_compdef ads "dselect-upgrade"
  123. # Misc. #####################################################################
  124. # print all installed packages
  125. alias allpkgs='aptitude search -F "%p" --disable-columns ~i'
  126. # Create a basic .deb package
  127. alias mydeb='time dpkg-buildpackage -rfakeroot -us -uc'
  128. # Functions #################################################################
  129. # create a simple script that can be used to 'duplicate' a system
  130. function apt-copy() {
  131. print '#!/bin/sh'"\n" > apt-copy.sh
  132. cmd='$apt_pref install'
  133. for p in ${(f)"$(aptitude search -F "%p" --disable-columns \~i)"}; {
  134. cmd="${cmd} ${p}"
  135. }
  136. print $cmd "\n" >> apt-copy.sh
  137. chmod +x apt-copy.sh
  138. }
  139. # Prints apt history
  140. # Usage:
  141. # apt-history install
  142. # apt-history upgrade
  143. # apt-history remove
  144. # apt-history rollback
  145. # apt-history list
  146. # Based On: https://linuxcommando.blogspot.com/2008/08/how-to-show-apt-log-history.html
  147. function apt-history() {
  148. case "$1" in
  149. install)
  150. zgrep --no-filename 'install ' $(ls -rt /var/log/dpkg*)
  151. ;;
  152. upgrade|remove)
  153. zgrep --no-filename $1 $(ls -rt /var/log/dpkg*)
  154. ;;
  155. rollback)
  156. zgrep --no-filename upgrade $(ls -rt /var/log/dpkg*) | \
  157. grep "$2" -A10000000 | \
  158. grep "$3" -B10000000 | \
  159. awk '{print $4"="$5}'
  160. ;;
  161. list)
  162. zgrep --no-filename '' $(ls -rt /var/log/dpkg*)
  163. ;;
  164. *)
  165. echo "Parameters:"
  166. echo " install - Lists all packages that have been installed."
  167. echo " upgrade - Lists all packages that have been upgraded."
  168. echo " remove - Lists all packages that have been removed."
  169. echo " rollback - Lists rollback information."
  170. echo " list - Lists all contains of dpkg logs."
  171. ;;
  172. esac
  173. }
  174. # Kernel-package building shortcut
  175. function kerndeb() {
  176. # temporarily unset MAKEFLAGS ( '-j3' will fail )
  177. MAKEFLAGS=$( print - $MAKEFLAGS | perl -pe 's/-j\s*[\d]+//g' )
  178. print '$MAKEFLAGS set to '"'$MAKEFLAGS'"
  179. appendage='-custom' # this shows up in $(uname -r )
  180. revision=$(date +"%Y%m%d") # this shows up in the .deb file name
  181. make-kpkg clean
  182. time fakeroot make-kpkg --append-to-version "$appendage" --revision \
  183. "$revision" kernel_image kernel_headers
  184. }
  185. # List packages by size
  186. function apt-list-packages() {
  187. dpkg-query -W --showformat='${Installed-Size} ${Package} ${Status}\n' | \
  188. grep -v deinstall | \
  189. sort -n | \
  190. awk '{print $1" "$2}'
  191. }