16 Jul
2023
16 Jul
'23
19:54
From: "Carlos E. R." <robin.listas@telefonica.net> Date: Sun, 16 Jul 2023 21:48:58 +0200 . . . Not the only way to do it, there are ping versions where you can adjust the cycle time: ping -T -i 60 cameras_ips | tee -a ping2.log -- Cheers / Saludos, Carlos E. R. Another approach is setting up a terminal window, doing SSH to another system, and running the following command: while true; do date; sleep 300; done That will give you a date stamp every five minutes (depending on the sleep arg) that will stop when the connection goes down. -- Bob