apenwarr-redo/redo/whichpython.do

13 lines
374 B
Text

exec >&2
for py in intentionally-missing python2.7 python2 python; do
echo "Trying: $py"
cmd=$(command -v "$py" || true)
# intentionally using the 'print statement' (as opposed to print
# function) here, to rule out any python3 interpreters
out=$($cmd -c 'print "success"' 2>/dev/null) || true
if [ "$out" = "success" ]; then
echo $cmd >$3
exit 0
fi
done
exit 10