From 01496626a27bfeb681ecf51130dc32c0d114d42b Mon Sep 17 00:00:00 2001 From: Axel Navarro Date: Mon, 8 Mar 2021 17:31:53 -0300 Subject: [PATCH] pacman-deptest: add page (#5304) --- pages/linux/pacman-deptest.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/linux/pacman-deptest.md diff --git a/pages/linux/pacman-deptest.md b/pages/linux/pacman-deptest.md new file mode 100644 index 000000000..6ff4aa0ed --- /dev/null +++ b/pages/linux/pacman-deptest.md @@ -0,0 +1,20 @@ +# pacman --deptest + +> Check each dependency specified and return a list of dependencies that are not currently satisfied on the system. +> More information: . + +- Print the package names of the dependencies that aren't installed: + +`pacman --deptest {{package_name1}} {{package_name2}}` + +- Check if the installed package satisfies the given minimum version: + +`pacman --deptest "{{bash>=5}}"` + +- Check if a later version of a package is installed: + +`pacman --deptest "{{bash>5}}"` + +- Display help: + +`pacman --deptest --help`