eesyphp/bin/eesyphp.wrapper

12 lines
185 B
Text
Raw Normal View History

#!/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 $?