diff --git a/contrib/kiss-depends b/contrib/kiss-depends index 0dd0136..179fc42 100755 --- a/contrib/kiss-depends +++ b/contrib/kiss-depends @@ -1,8 +1,7 @@ #!/bin/sh -ef # Display a package's dependencies -# CRUX style usage using the current directory as the name of the package to be -# operated on. +# Use the current directory as the package name if no package is given. [ "$1" ] || { set -- "${PWD##*/}" } diff --git a/contrib/kiss-export b/contrib/kiss-export index 0162780..2e8f24b 100755 --- a/contrib/kiss-export +++ b/contrib/kiss-export @@ -1,8 +1,7 @@ #!/bin/sh -ef # Turn an installed package into a KISS tarball -# CRUX style usage using the current directory as the name of the package to be -# operated on. +# Use the current directory as the package name if no package is given. [ "$1" ] || { set -- "${PWD##*/}" } diff --git a/contrib/kiss-maintainer b/contrib/kiss-maintainer index 4635f05..9b0080a 100755 --- a/contrib/kiss-maintainer +++ b/contrib/kiss-maintainer @@ -1,8 +1,7 @@ #!/bin/sh -ef # Find the maintainer of a package -# CRUX style usage using the current directory as the name of the package to be -# operated on. +# Use the current directory as the package name if no package is given. [ "$1" ] || { export KISS_PATH=${PWD%/*}:$KISS_PATH set -- "${PWD##*/}" diff --git a/contrib/kiss-revdepends b/contrib/kiss-revdepends index 33bb9e5..2e533ce 100755 --- a/contrib/kiss-revdepends +++ b/contrib/kiss-revdepends @@ -1,8 +1,7 @@ #!/bin/sh -e # Display packages which depend on package -# CRUX style usage using the current directory as the name of the package to be -# operated on. +# Use the current directory as the package name if no package is given. [ "$1" ] || { set -- "${PWD##*/}" } diff --git a/contrib/kiss-size b/contrib/kiss-size index 7f4b34b..50949c1 100755 --- a/contrib/kiss-size +++ b/contrib/kiss-size @@ -15,8 +15,7 @@ get_size() { printf '%s\t%s\n' "$hum" "$2" } -# CRUX style usage using the current directory as the name of the package to be -# operated on. +# Use the current directory as the package name if no package is given. [ "$1" ] || { set -- "${PWD##*/}" }