sshuttle/run

7 lines
115 B
Plaintext
Raw Normal View History

#!/bin/sh
if python2 -V 2>/dev/null; then
exec python2 -m "sshuttle" "$@"
else
exec python -m "sshuttle" "$@"
fi