mrroman
2023-12-28 a85307b3d3c76c6742336c1ee701a76f1cc030ec
commit | author | age
3a37e6 1 #!/bin/sh
54613d 2 # script to launch vilain with the latest python3 version available
40cb2e 3
667007 4 PYTHON="/usr/local/bin/python3"
3a37e6 5 if [ -x $PYTHON ]; then
40cb2e 6     $PYTHON /usr/local/sbin/vilain.py >/dev/null 2>&1 &
3a37e6 7 else
T 8     echo "Error : no python3 executable found"
9 fi
10 exit