Added some small boring scripts and programs writen in few last years
[mirrors/Programs.git] / bash / ssh-keepalive / falive
1 #!/bin/bash
2 #KAlive (<-Harvie 2oo7)
3 #Use this to prevent ssh timeouting...
4
5 SLP=1;
6 KAM="Keeping alive... ";
7
8 clear;
9 while true; do
10 echo -e -n \\r$KAM 8w==D;
11 sleep $SLP;
12 echo -e -n \\r$KAM 8=w=D;
13 sleep $SLP;
14 echo -e -n \\r$KAM 8==wD;
15 sleep $SLP;
16 echo -e -n \\r$KAM 8=w=D;
17 sleep $SLP;
18 done;
19
20 ##EOF
21
This page took 0.306645 seconds and 4 git commands to generate.