diff options
author | merakor <cem@ckyln.com> | 2020-05-13 19:51:21 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-05-13 19:51:21 +0000 |
commit | c68dffa6c42334cfa939fb21a5430a35abff08c0 (patch) | |
tree | 851e5fc23981c030ecaebe53cd100a2f1edd4964 /contrib/kiss-cat | |
parent | 77cf1dab6537557b5ae43e1aee76972f87c829c0 (diff) | |
download | cpt-c68dffa6c42334cfa939fb21a5430a35abff08c0.tar.gz |
contrib: use --help and -h for usage information
FossilOrigin-Name: 43f55b077d3feb3e4bc42d72a58cadedbe7f387cedf01d2e59308c35f6afb484
Diffstat (limited to 'contrib/kiss-cat')
-rwxr-xr-x | contrib/kiss-cat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/kiss-cat b/contrib/kiss-cat index 5f5cf5d..937b46d 100755 --- a/contrib/kiss-cat +++ b/contrib/kiss-cat @@ -1,8 +1,8 @@ #!/bin/sh -e # Concatanate package files in the installed package database # File names are printed to stderr. +case "$1" in ''|--help|-h) printf '\033[1;33m-> \033[musage: %s <pkg> [file] [file]\n' "${0##*/}" ; exit 0; esac -[ "$1" ] || { printf '\033[1;33m-> \033[musage: %s <pkg> [file] [file]\n' "${0##*/}" ; exit 1;} kiss l "${pkg:=$1}" >/dev/null ; shift for file in ${*:-build depends sources version} ; do |