diff options
author | Marcin Chrzanowski <m@m-chrzan.xyz> | 2024-05-21 15:33:28 +0200 |
---|---|---|
committer | Marcin Chrzanowski <m@m-chrzan.xyz> | 2024-05-21 15:33:28 +0200 |
commit | 551856d84eb9ae51ff1bdd3fff317f29eced2a18 (patch) | |
tree | 09caf34e446071c455d488411fc2e22445db3f0f | |
parent | 46004743d661f683bc8816fd0dbe9966f645a836 (diff) |
Add package info commands
-rw-r--r-- | pacman.md | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -41,6 +41,18 @@ there and remove the .pacnew suffix) By itself, outputs all installed packages. +### Info + +Includes provided binaries/libraries, dependencies, installed size, etc. + + pacman -Qi <package> + + +Double info, includes more information, including packages that require (depend +on) this one: + + pacman -Sii <package> + ### Browsing installed packages with `fzf` pacman -Qq | fzf --preview 'pacman -Qil {}' --layout=reverse --bind 'enter:execute(pacman -Qil {} | less)' |