From 1dabf5a8d511db458dd529588e57a8ed8185787a Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Thu, 28 May 2020 16:45:43 +0300 Subject: added new utilities, changed repository structure --- alt/kiss-exec | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 alt/kiss-exec (limited to 'alt/kiss-exec') diff --git a/alt/kiss-exec b/alt/kiss-exec new file mode 100755 index 0000000..d2b3217 --- /dev/null +++ b/alt/kiss-exec @@ -0,0 +1,23 @@ +#!/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" "$@" -- cgit v1.2.3