Linux Bash Loop
 Endlos Ping mittels Bash auf einen bestimmten Port und Log in eine Textdatei bei Fehlern.
#!/bin/bash
while :
do
if [ "$(nmap -p 443 192.168.0.1 | grep '.*0 hosts.*')" ];then date >> /temp/pingtest.txt;fi
date > /temp/pingalive.txt
sleep 1
done
Â

{{percentage}} % positiv
