debian.plugin.zsh 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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 acse="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. # acse ... | 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 aar="sudo $apt_pref autoremove"
  50. # apt-get only
  51. alias ads="sudo apt-get dselect-upgrade"
  52. # apt only
  53. alias alu="sudo apt update && apt list -u && sudo apt upgrade"
  54. # Install all .deb files in the current directory.
  55. # Warning: you will need to put the glob in single quotes if you use:
  56. # glob_subst
  57. alias dia="sudo dpkg -i ./*.deb"
  58. alias di="sudo dpkg -i"
  59. # Remove ALL kernel images and headers EXCEPT the one in use
  60. alias kclean='sudo aptitude remove -P "?and(~i~nlinux-(ima|hea) ?not(~n$(uname -r)))"'
  61. # commands using su #########
  62. else
  63. alias aac="su -ls '$apt_pref autoclean' root"
  64. function abd() {
  65. cmd="su -lc '$apt_pref build-dep $@' root"
  66. print "$cmd"
  67. eval "$cmd"
  68. }
  69. alias ac="su -ls '$apt_pref clean' root"
  70. alias ad="su -lc '$apt_pref update' root"
  71. alias adg="su -lc '$apt_pref update && aptitude $apt_upgr' root"
  72. alias adu="su -lc '$apt_pref update && aptitude dist-upgrade' root"
  73. alias afu="su -lc '$apt-file update'"
  74. alias au="su -lc '$apt_pref $apt_upgr' root"
  75. function ai() {
  76. cmd="su -lc '$apt_pref install $@' root"
  77. print "$cmd"
  78. eval "$cmd"
  79. }
  80. function ap() {
  81. cmd="su -lc '$apt_pref purge $@' root"
  82. print "$cmd"
  83. eval "$cmd"
  84. }
  85. function aar() {
  86. cmd="su -lc '$apt_pref autoremove $@' root"
  87. print "$cmd"
  88. eval "$cmd"
  89. }
  90. # Install all .deb files in the current directory
  91. # Assumes glob_subst is off
  92. alias dia='su -lc "dpkg -i ./*.deb" root'
  93. alias di='su -lc "dpkg -i" root'
  94. # Remove ALL kernel images and headers EXCEPT the one in use
  95. alias kclean='su -lc "aptitude remove -P \"?and(~i~nlinux-(ima|hea) ?not(~n$(uname -r)))\"" root'
  96. fi
  97. # Completion ################################################################
  98. #
  99. # Registers a compdef for $1 that calls $apt_pref with the commands $2
  100. # To do that it creates a new completion function called _apt_pref_$2
  101. #
  102. function apt_pref_compdef() {
  103. local f fb
  104. f="_apt_pref_${2}"
  105. eval "function ${f}() {
  106. shift words;
  107. service=\"\$apt_pref\";
  108. words=(\"\$apt_pref\" '$2' \$words);
  109. ((CURRENT++))
  110. test \"\${apt_pref}\" = 'aptitude' && _aptitude || _apt
  111. }"
  112. compdef "$f" "$1"
  113. }
  114. apt_pref_compdef aac "autoclean"
  115. apt_pref_compdef abd "build-dep"
  116. apt_pref_compdef ac "clean"
  117. apt_pref_compdef ad "update"
  118. apt_pref_compdef afu "update"
  119. apt_pref_compdef au "$apt_upgr"
  120. apt_pref_compdef ai "install"
  121. apt_pref_compdef ail "install"
  122. apt_pref_compdef ap "purge"
  123. apt_pref_compdef aar "autoremove"
  124. apt_pref_compdef ads "dselect-upgrade"
  125. # Misc. #####################################################################
  126. # print all installed packages
  127. alias allpkgs='aptitude search -F "%p" --disable-columns ~i'
  128. # Create a basic .deb package
  129. alias mydeb='time dpkg-buildpackage -rfakeroot -us -uc'
  130. # Functions #################################################################
  131. # create a simple script that can be used to 'duplicate' a system
  132. function apt-copy() {
  133. print '#!/bin/sh'"\n" > apt-copy.sh
  134. cmd='$apt_pref install'
  135. for p in ${(f)"$(aptitude search -F "%p" --disable-columns \~i)"}; {
  136. cmd="${cmd} ${p}"
  137. }
  138. print $cmd "\n" >> apt-copy.sh
  139. chmod +x apt-copy.sh
  140. }
  141. # Prints apt history
  142. # Usage:
  143. # apt-history install
  144. # apt-history upgrade
  145. # apt-history remove
  146. # apt-history rollback
  147. # apt-history list
  148. # Based On: https://linuxcommando.blogspot.com/2008/08/how-to-show-apt-log-history.html
  149. function apt-history() {
  150. case "$1" in
  151. install)
  152. zgrep --no-filename 'install ' $(ls -rt /var/log/dpkg*)
  153. ;;
  154. upgrade|remove)
  155. zgrep --no-filename $1 $(ls -rt /var/log/dpkg*)
  156. ;;
  157. rollback)
  158. zgrep --no-filename upgrade $(ls -rt /var/log/dpkg*) | \
  159. grep "$2" -A10000000 | \
  160. grep "$3" -B10000000 | \
  161. awk '{print $4"="$5}'
  162. ;;
  163. list)
  164. zgrep --no-filename '' $(ls -rt /var/log/dpkg*)
  165. ;;
  166. *)
  167. echo "Parameters:"
  168. echo " install - Lists all packages that have been installed."
  169. echo " upgrade - Lists all packages that have been upgraded."
  170. echo " remove - Lists all packages that have been removed."
  171. echo " rollback - Lists rollback information."
  172. echo " list - Lists all contains of dpkg logs."
  173. ;;
  174. esac
  175. }
  176. # Kernel-package building shortcut
  177. function kerndeb() {
  178. # temporarily unset MAKEFLAGS ( '-j3' will fail )
  179. MAKEFLAGS=$( print - $MAKEFLAGS | perl -pe 's/-j\s*[\d]+//g' )
  180. print '$MAKEFLAGS set to '"'$MAKEFLAGS'"
  181. appendage='-custom' # this shows up in $(uname -r )
  182. revision=$(date +"%Y%m%d") # this shows up in the .deb file name
  183. make-kpkg clean
  184. time fakeroot make-kpkg --append-to-version "$appendage" --revision \
  185. "$revision" kernel_image kernel_headers
  186. }
  187. # List packages by size
  188. function apt-list-packages() {
  189. dpkg-query -W --showformat='${Installed-Size} ${Package} ${Status}\n' | \
  190. grep -v deinstall | \
  191. sort -n | \
  192. awk '{print $1" "$2}'
  193. }