eesyphp/bin/eesyphp.wrapper
2022-04-24 18:30:02 +02:00

12 lines
187 B
Bash
Executable file

#!/bin/bash
USER=$( basename $0 )
REAL_BIN=$( realpath -L $0|sed 's/\.wrapper$//' )
if [ "$( id -u -n )" != "$USER" ]
then
sudo -u $USER $REAL_BIN $@
exit $?
fi
$REAL_BIN $@
exit $?