From 26e3b92dce26631a6783eb430326d37a93e62488 Mon Sep 17 00:00:00 2001 From: merakor Date: Sat, 5 Sep 2020 07:13:28 +0000 Subject: contrib: use current directory if no arguments are given FossilOrigin-Name: 266bf81edde642e79582487e98140a0539f14c82dd0671eee91b22881cdf62db --- contrib/cpt-cat | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'contrib/cpt-cat') diff --git a/contrib/cpt-cat b/contrib/cpt-cat index 199eefc..0529287 100755 --- a/contrib/cpt-cat +++ b/contrib/cpt-cat @@ -1,7 +1,14 @@ #!/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...]\n' "${0##*/}" ; exit 0; esac +case "$1" in + --help|-h) + printf '\033[1;33m-> \033[musage: %s [pkg] [file...]\n' "${0##*/}" + exit 0 + ;; + '') + set -- "${PWD##*/}" +esac cpt-list "${pkg:=$1}" >/dev/null ; shift -- cgit v1.2.3