mrroman
2023-12-28 667007fe0aea7e6a22c7f1ac45dbae4a58eb672e
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