You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
262 B

#!/bin/sh
if [ $# -eq 0 ]; then
echo "nss:ERROR: no command given" 1>&2
exit 1
fi
cmd="$1"
shift
if [ ! -x @l_prefix@/libexec/nss/$cmd ]; then
echo "nss:ERROR: command \"$cmd\" not known" 1>&2
exit 1
fi
exec @l_prefix@/libexec/nss/$cmd ${1+"$@"}