foo install packagename`. Now, there is:
Never use something like `
rpm -e $(rpm
-qa | grep kde)` because it will remove all the packages that have
kde in their name, NOT JUST the ones that begin with kde. Such careless
use may remove important packages. In general, `rpm -qa | grep
kde` is almost useless because you could have written `rpm -qa
"*kde*"` instead.
(The list is incomplete, esp. with Solaris pkg, so if anyone
knows, please notify me.)
List all packages in short form:rpm -qadpkg-query -Wpkginfopacman -Qrpm -qi bashdpkg -s bashpkginfo -l SUNWbashpacman -Qirpm -qip bash.x86_64.rpmdpkg -l bash.debpacman -Qpirpm -ql bashdpkg -L bashpkgchk -l SUNWbashr | grep Pathname:pacman -Qlrpm -qlp bash.x86_64.rpmdpkg -c bash.debpacman -Qlprpm -qilvp bash.x86_64.rpmrpm -qf /bin/bashdpkg -S /bin/bashpkgchk -l -p /bin/bashpacman -Qorpm -q --whatprovides "libc.so.6(GLIBC_2.4)"rpm -q --whatrequires libm.so.6rpm -qR bashpacman -Qirpm -qRp bash.x86_64.rpmpacman -Qpirpm -Uhv bash.x86_64.rpmdpkg -i bash.debpacman -U bash...rpm -e bashdpkg -P bashpkgrm SUNWbashrpacman -R bashrpmbuild -ba bash.spec[Arch Build System]rpmbuild --rebuild -bb bash.src.rpmrpm2cpio bash.rpm | cpio -diudpkg -x bash.deb $PWDfrom http://inai.de/linux/adm_pack