Remove reference to crux in comments for those unfamiliar with it.

This commit is contained in:
Jonathan Dahan 2020-09-04 13:31:30 -04:00
parent 0f054313e3
commit fb3ac1f7e9
5 changed files with 5 additions and 10 deletions

View File

@ -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##*/}"
}

View File

@ -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##*/}"
}

View File

@ -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##*/}"

View File

@ -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##*/}"
}

View File

@ -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##*/}"
}