The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/sudo#68203ed1a2fac7aff1b57189e8c217db89e5fe4a
6 lines
81 B
Bash
6 lines
81 B
Bash
#!/bin/bash
|
|
for i in `seq 1 10`; do
|
|
( ping -c 10 -q www.redhat.com & )
|
|
done
|
|
|