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