pi() {
pupdate
local s; [[ $EUID != 0 ]] && s=sudo
- $s apt-get -y install "$@"
+ $s apt-get -y install --purge --auto-remove "$@"
}
pi-nostart() {
local s; [[ $EUID != 0 ]] && s=sudo
$s rm $f
}
pf() {
- # scratch a very annoying itch. package description width as
+ # package name and descriptions
+ apt-cache search "$@"
+ }
+ pff() {
+ local s; [[ $EUID != 0 ]] && s=sudo
+ # nice aptitude search from emacs shell. package description width as
# wide as the screen, and package name field small aptitude
# manual can't figure out how wide emacs terminal is, of course
# it doesn't consult the $COLUMNS variable... and in a normal
# terminal, it makes the package name field ridiculously big
# also, remove that useless dash before the description
- local s; [[ $EUID != 0 ]] && s=sudo
- $s aptitude -F "%c%a%M %p %$((COLUMNS - 30))d" -w $COLUMNS search "$@"
+ aptitude -F "%c%a%M %p %$((COLUMNS - 30))d" -w $COLUMNS search "$@"
}
pu() {
local s; [[ $EUID != 0 ]] && s=sudo
$s apt-get -y remove --purge --auto-remove "$@"
+ # seems slightly redundant, but it removes more stuff sometimes.
+ $s apt-get -y autoremove
}
pup() { # upgrade
pupdate
local s; [[ $EUID != 0 ]] && s=sudo
- $s apt-get -y dist-upgrade "$@"
+ $s apt-get -y dist-upgrade --purge --auto-remove "$@"
$s apt-get -y autoremove
}
# package info