[script] add setBridge script

This commit is contained in:
Mathieu Maret 2013-02-22 18:17:18 +01:00
parent e6866c0ece
commit 571ec13b7c
1 changed files with 8 additions and 0 deletions

8
scripts/setBrigde.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
user=pi
host=tutabaga.hd.free.fr
ps aux | grep ssh | grep $host > /dev/null
res=$?
if [ $res == 1 ]; then
ssh -N -R 65022:localhost:22 $user@$host&
fi