|
|
|
|
|
by warvariuc
1682 days ago
|
|
Or #!/bin/sh
""":"
# bash code here; finds a suitable python interpreter and execs this file.
for pyver in 3.6 3.7 3.8 3.9; do
which python$pyver > /dev/null 2>&1 && exec python$pyver "$0" "$@"
done
echo "No appropriate python interpreter found." >&2
exit 1
":"""
|
|