mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-14 20:14:28 +01:00
7 lines
115 B
Plaintext
7 lines
115 B
Plaintext
|
#!/bin/sh
|
||
|
if python2 -V 2>/dev/null; then
|
||
|
exec python2 -m "sshuttle" "$@"
|
||
|
else
|
||
|
exec python -m "sshuttle" "$@"
|
||
|
fi
|