mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-22 16:03:57 +01:00
7 lines
115 B
Bash
Executable File
7 lines
115 B
Bash
Executable File
#!/bin/sh
|
|
if python3 -V 2>/dev/null; then
|
|
exec python3 -m "sshuttle" "$@"
|
|
else
|
|
exec python -m "sshuttle" "$@"
|
|
fi
|