diff options
author | merakor <cem@ckyln.com> | 2020-04-25 08:53:06 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-04-25 08:53:06 +0000 |
commit | cba19443ea58a95b70d2b9b143cfabdad8b254d7 (patch) | |
tree | c522e6104d328a6ca3a25e423846bf761ab1318c /contrib/kiss-size | |
parent | 6528e11f10b5fafac3801712ade601aa9a3a9b8c (diff) | |
download | cpt-cba19443ea58a95b70d2b9b143cfabdad8b254d7.tar.gz |
contrib: add usages
FossilOrigin-Name: 5b5b5951eb8b363efa3298e16b53e630483f8def40a910dcfbb98f4ab21af8dd
Diffstat (limited to 'contrib/kiss-size')
-rwxr-xr-x | contrib/kiss-size | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/contrib/kiss-size b/contrib/kiss-size index 72365a4..1c39bee 100755 --- a/contrib/kiss-size +++ b/contrib/kiss-size @@ -2,17 +2,12 @@ # # kiss-size - Show the size on disk for a package. -db_dir=$KISS_ROOT/var/db/kiss/installed/${1-null} - -# Check if package is installed and exit if it is not. -[ -d "$db_dir" ] || { - printf '%s\n' "error: '$1' not installed." >&2 - exit 1 -} +[ "$1" ] || { printf '%s\n' "usage: kiss-size <pkg>" ; exit 1 ;} +kiss s "$1" >/dev/null # Filter directories from manifest and leave only files. # Directories in the manifest end in a trailing '/'. -files=$(sed 's|.*/$||' "$db_dir/manifest") +files=$(sed 's|.*/$||' "$KISS_ROOT/var/db/kiss/installed/$1/manifest") # Send the file list to 'du'. # This unquoted variable is safe as word splitting is intended |