diff --git a/filesystem/etc/skel/scripts/pingsweep.sh b/filesystem/etc/skel/scripts/pingsweep.sh index 7c92c500..0c689c94 100755 --- a/filesystem/etc/skel/scripts/pingsweep.sh +++ b/filesystem/etc/skel/scripts/pingsweep.sh @@ -1,4 +1,5 @@ #!/bin/bash for ip in $(seq 1 254); do -ping -c 1 172.30.0.$ip |grep "bytes from" |cut -d" " -f4|cut -d";" -f1& + ping -c 1 172.30.0.$ip |grep "bytes from" |cut -d" " -f4|cut -d";" -f1& + sleep 0.01 done