diff options
author | Cem Keylan <cem@ckyln.com> | 2020-05-28 16:45:43 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-05-28 16:45:43 +0300 |
commit | 1dabf5a8d511db458dd529588e57a8ed8185787a (patch) | |
tree | c5905caa9b93fa4c63ee5e8e8dbdccd53d5aca53 /kiss-exec | |
parent | 7bfa97d6fa2452d0517c4f820e44033b5a50cd50 (diff) | |
download | cpt-extra-20200528.tar.gz |
added new utilities, changed repository structure20200528
Diffstat (limited to 'kiss-exec')
-rwxr-xr-x | kiss-exec | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/kiss-exec b/kiss-exec deleted file mode 100755 index d2b3217..0000000 --- a/kiss-exec +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# Execute a command inside the alternatives system - -usage() { - printf '\033[1;33m-> \033[m%s\n' "usage: ${0##*/} [pkg] [command]" - exit "$1" -} - -case "$1" in ''|--help|-h) usage 0; esac -[ "$2" ] || usage 1 - -pkg=$1 - -[ "${2##/*}" ] && command=">usr>bin>$2" || - command="$(printf '%s' "$2" | sed 's#/#>#g')" - -[ -h "${file:=/var/db/kiss/choices/$pkg$command}" ] && { - printf 'ERROR: %s\n' "$file is a symlink" - exit 1 -} - -shift 2 -exec "/var/db/kiss/choices/$pkg$command" "$@" |