16 lines
142 B
Bash
Executable File
16 lines
142 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
bramble=(quimby hans willie kirk brandine)
|
|
|
|
|
|
for host in "${bramble[@]}"
|
|
do
|
|
ping -c 3 ${host}
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
|