9 lines
164 B
Bash
9 lines
164 B
Bash
|
#!/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
|