File: run

package info (click to toggle)
sshuttle 0.78.1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 516 kB
  • ctags: 528
  • sloc: python: 4,484; makefile: 162; sh: 7
file content (8 lines) | stat: -rwxr-xr-x 190 bytes parent folder | download
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