fixed funding links
[mirrors/Programs.git] / bash / ssh-keepalive / kalive
CommitLineData
21c4e167
H
1#!/bin/bash
2#KAlive (<-Harvie 2oo7)
3#Use this to prevent ssh timeouting...
4
5SLP=1;
6KAM="Keeping alive... ";
7
8clear;
9while true; do
10 echo -e -n \\r$KAM-;
11 sleep $SLP;
12 echo -e -n \\r$KAM\\;
13 sleep $SLP;
14 echo -e -n \\r$KAM\|;
15 sleep $SLP;
16 echo -e -n \\r$KAM/;
17 sleep $SLP;
18done;
19
20##EOF
21
This page took 0.187633 seconds and 4 git commands to generate.