sshuttle/run
2016-01-30 11:27:37 +11:00

7 lines
119 B
Bash
Executable File

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