Commit c897a57c authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Rename .ssh/forward.py -> connect.py

parent 43e3d643
Loading
Loading
Loading
Loading
+0 −0

File moved.

+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
die(){ echo "$*" >&2; exit 1; }
has(){ type $1 >/dev/null 2>/dev/null; }
if has python; then
	python `dirname $0`/forward.py "$@" && exit
	python `dirname $0`/connect.py "$@" && exit
elif has nc; then
	nc -w 10 $1 $2 && exit
fi