mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-25 09:23:48 +01:00
10 lines
225 B
Bash
Executable File
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
|