diff options
Diffstat (limited to 'contrib/cpt-manifest')
-rwxr-xr-x | contrib/cpt-manifest | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/contrib/cpt-manifest b/contrib/cpt-manifest index 8f8b83c..c3318a9 100755 --- a/contrib/cpt-manifest +++ b/contrib/cpt-manifest @@ -1,6 +1,12 @@ #!/bin/sh -ef # Display all files owned by a package -case "$1" in ''|--help|-h) printf '\033[1;33m-> \033[m%s\n' "usage: ${0##*/} [pkg]" ; exit 0 ; esac +case "$1" in + --help|-h) + printf '\033[1;33m-> \033[m%s\n' "usage: ${0##*/} [pkg]" + exit 0 + ;; + '') set -- "${PWD##*/}" +esac cpt-list "$1" >/dev/null cat "$CPT_ROOT/var/db/cpt/installed/$1/manifest" 2>/dev/null |