config/scripts/setBrigde.sh
2015-06-30 15:49:16 +02:00

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