Thuban
2017-09-09 9120747a0773123eb41ef55d5e131f1789e1bad5
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
# script to launch vilain with the latest python3 version available
 
PYTHONVERSION=$(ls -l /usr/local/bin/python3.* |grep -Eo "3\.[0-9]" |tail -n1)
PYTHON="/usr/local/bin/python$PYTHONVERSION"
if [ -x $PYTHON ]; then
    $PYTHON /usr/local/sbin/vilain.py >/dev/null 2>&1 &
else
    echo "Error : no python3 executable found"
fi
exit