1
1
mirror of https://github.com/sshuttle/sshuttle.git synced 2025-04-04 22:09:41 +02:00
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