m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Chrzanowski <m@m-chrzan.xyz>2024-05-21 15:33:28 +0200
committerMarcin Chrzanowski <m@m-chrzan.xyz>2024-05-21 15:33:28 +0200
commit551856d84eb9ae51ff1bdd3fff317f29eced2a18 (patch)
tree09caf34e446071c455d488411fc2e22445db3f0f
parent46004743d661f683bc8816fd0dbe9966f645a836 (diff)
Add package info commandsHEADmaster
-rw-r--r--pacman.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/pacman.md b/pacman.md
index 133adfd..98a11d8 100644
--- a/pacman.md
+++ b/pacman.md
@@ -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)'