mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* pages*: use generic word for help * git: add newline to the end Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * pages*: make help and version commands comply with the style guide * java: fix Java name --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
880 B
880 B
pacman --remove
Arch Linux package manager utility. See also:
pacman
. More information: https://man.archlinux.org/man/pacman.8.
- Remove a package and its dependencies:
sudo pacman --remove --recursive {{package}}
- Remove a package and both its dependencies and configuration files:
sudo pacman --remove --recursive --nosave {{package}}
- Remove a package without prompting:
sudo pacman --remove --noconfirm {{package}}
- Remove orphan packages (installed as dependencies but not required by any package):
sudo pacman --remove --recursive --nosave $(pacman --query --unrequired --deps --quiet)
- Remove a package and all packages that depend on it:
sudo pacman --remove --cascade {{package}}
- List packages that would be affected (does not remove any packages):
pacman --remove --print {{package}}
- Display help:
pacman --remove --help