bacman: rewrite usage function

Signed-off-by: Gordian Edenhofer <gordian.edenhofer@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Gordian Edenhofer 2016-09-04 18:14:00 +02:00 committed by Allan McRae
parent 5c549b0e1d
commit 3a00bc31f2
1 changed files with 13 additions and 4 deletions

View File

@ -48,13 +48,22 @@ trap clean_up SIGHUP SIGINT SIGTERM
# User Friendliness # User Friendliness
# #
usage() { usage() {
echo "${myname} (pacman) v${myver}" printf "%s (pacman) %s\n" "$myname" "$myver"
echo echo
echo "Recreate a package using pacman's database and system files" printf -- "$(gettext "Recreate packages using pacman's database and system files")\n"
echo echo
echo "Usage: ${myname} [--nocolor] [--pacnew] <installed package name>" printf -- "$(gettext "Usage: %s [options] <package(s)>")\n" "$0"
echo
printf -- "$(gettext "Options:")\n"
printf -- "$(gettext " -h, --help Show this help message and exit")\n"
printf -- "$(gettext " -m, --nocolor Disable colorized output messages")\n"
printf -- "$(gettext " --pacnew Package .pacnew files")\n"
echo
printf -- "$(gettext "Examples:")"
printf -- " %s linux-headers\n" "$myname"
printf -- " %s --nocolor --pacnew gzip make binutils\n" "$myname"
printf -- " %s \$(pacman -Qq)\n" "$myname"
echo echo
echo "Example: ${myname} linux-headers"
} }
version() { version() {