X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=usr_bin%2Fgrml-exec-wrapper;h=4e5a3ccbafe7b044c4ac42ef8017a101238192ed;hb=c6fa5b9b1a99cfd42fd9aa2c2ce465321f7845af;hp=cd51cae50d5135bc1987de93fa70c0f2c4f09703;hpb=d03a386825bd12fb95cf4b87572038102a7ee514;p=grml-scripts.git diff --git a/usr_bin/grml-exec-wrapper b/usr_bin/grml-exec-wrapper index cd51cae..4e5a3cc 100755 --- a/usr_bin/grml-exec-wrapper +++ b/usr_bin/grml-exec-wrapper @@ -6,10 +6,28 @@ # License: This file is licensed under the GPL v2 or any later version. ################################################################################ +PN=$(basename "$0") + +usage() { + printf "Usage: %s [] + +Available options: + + -h | --help display this usage information + -p check specified argument instead of default args, like: + %s -p aumix xterm -T aumix -e aumix\n" "${PN}" "${PN}" +} + is_installed() { prog="$1" [ -z "$prog" ] && return 1 + case "${prog}" in + /*) # deal with absolute-path programs + [ -x "${prog}" ] && return 0 + return 1 ;; + esac + ret=1 oifs="$IFS" IFS=: @@ -25,40 +43,47 @@ is_installed() { # use Xdisplay only if present and running under X: display_info() { -if is_installed Xdialog && test -n "$DISPLAY" ; then - Xdialog --title "grml-exec-wrapper" --msgbox "$1" 0 0 0 +if is_installed xterm && test -n "$DISPLAY" ; then + xterm -T 'Sorry :(' -e "dialog --msgbox \"$1\" 0 0" else - print "$1">&2 + printf '%s\n' "$1">&2 fi } -if [ -z "$1" ] ; then - display_info "Usage: $0 []" +if [ -z "$1" ] || [ "$1" = '-h' ] || [ "$1" = '--help' ] ; then + usage exit 1 fi -RC='0' -PROG="$1" - -# make sure to support 'grml-exec-wrapper sudo wireshark' as well: -case $PROG in - *sudo*) PROG="$2" ;; -esac +if [ "$1" = '-p' ] ; then + if [ -z "$2" ] ; then + usage + exit 1 + else + PROG="$2" + shift ; shift + fi +else + PROG="$1" + # make sure to support 'grml-exec-wrapper sudo wireshark' as well: + case $PROG in + *sudo*) PROG="$2" ;; + esac +fi if is_installed "$PROG" ; then exec "$@" -else - RC=1 - display_info "Sorry: ${PROG} not available. +fi + +display_info "Sorry: ${PROG} not available. Looks like the grml flavour you are using does not ship ${PROG}. :( You can search for ${PROG} executing: -apt-get update && apt-cache search ${PROG} +apt-get update && apt-cache search $(basename "${PROG}") " -fi -exit $RC +exit 1 ## END OF FILE #################################################################