diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2022-12-21 23:24:11 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2022-12-21 23:24:11 +0100 |
commit | 4a8c8c7520419cbaa01b26353ef35e357c5d1ecf (patch) | |
tree | e17192796334ff2a9b78ea9654d6955390d53f05 | |
parent | 026d679006e5d470bacdc74bb3082072edf31e36 (diff) | |
download | notes-4a8c8c7520419cbaa01b26353ef35e357c5d1ecf.tar.gz notes-4a8c8c7520419cbaa01b26353ef35e357c5d1ecf.zip |
pacman: fix orphaned package trick
-rw-r--r-- | src/tools/pacman.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/pacman.md b/src/tools/pacman.md index f6b560b..12c5836 100644 --- a/src/tools/pacman.md +++ b/src/tools/pacman.md @@ -45,7 +45,7 @@ pacman -Fx <regex> search Uninstall all orphaned packages (including config files) that were installed as dependencies. ```text -pacman -Rsn $(pacman -Qqtq) +pacman -Rsn $(pacman -Qtdq) ``` List explicitly installed packages that are not required as dependency by any |