sshuttle/run
2016-08-30 18:51:19 +10:00

10 lines
225 B
Bash
Executable File

#!/bin/sh
export PYTHONPATH=$PWD:$PYTHONPATH
if python3.5 -V 2>/dev/null; then
exec python3.5 -m "sshuttle" "$@"
elif python2.7 -V 2>/dev/null; then
exec python2.7 -m "sshuttle" "$@"
else
exec python -m "sshuttle" "$@"
fi