summaryrefslogtreecommitdiffstats
path: root/run
blob: 1a33f7ace8672a464d9ae8b079ebc7500cec621f (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
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