Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. aptitude -F'|%p|%d|' search '?section(hamradio)'
  2.  
  3. aptitude -F'|%p|%d|' search '?section(hamradio) !~i'
  4.  
  5. aptitude -F'|%p|%d|' search '?section(hamradio) ~r native'
  6.  
  7. aptitude -F'|%p|%d|' search '~s hamradio ~r native'
  8.  
  9. grep-aptavail -F Section hamradio
  10.  
  11. grep-aptavail -n -F Section -s Package hamradio
  12.  
  13. grep-aptavail -n -F Section -s Package hamradio | sort | uniq
  14.  
  15. grep-aptavail -n -F Section -s Package hamradio | sort -u
  16.  
  17. grep-aptavail -n -s Package,Description -F Section hamradio |paste -sd '||n' |sed 's:^:|:' |sort -u
  18.  
  19. $ dpkg-query -W -f='${binary:Package} ${Section}n' | awk '{if ($2 == "shells") {print $1}}'
  20. bash
  21. bash-completion
  22. busybox-initramfs
  23. busybox-static
  24. dash
  25. zsh
  26. zsh-common
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement