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