commit daf20191b97b5cc7b31a3cd9f6fdc3d97f1bea66
parent c85b19454ef9d1b5094ea9afff170744e7241804
Author: Alex Collins <acollins@onetrust.com>
Date: Thu, 28 Apr 2022 10:27:34 +0100
added shorthand commands to usage()
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/xpm.sh b/xpm.sh
@@ -10,11 +10,11 @@ usage() {
echo "xpm - x package manager, an interface to the system package manager."
echo ""
echo "COMMAND"
- echo "install install all [PKG]"
- echo "remove uninstall all [PKG] (and uneeded dependencies)"
- echo "search search the repositories for [PKG]"
- echo "query query [PKG] to see if it's installed"
- echo "update update all packages on the system"
+ echo "install, in, i install all [PKG]"
+ echo "remove, re, r uninstall all [PKG] (and dependencies)"
+ echo "search, se, s search the repositories for [PKG]"
+ echo "query, qry, q query [PKG] to see if it's installed"
+ echo "update, up, u update all packages on the system"
echo ""
echo "See the README.md file for more details"
}