2018-09-26 16:06:16 +01:00

15 lines
177 B
Bash
Executable File

#!/bin/bash
BASEDIR=$(dirname $0)
ID=$(id -u)
# Avoid using sudo if we're already root
SUDO=sudo
if [ $ID -eq 0 ]
then
SUDO=""
fi
$SUDO python -u $BASEDIR/sensehat.py $@