Skip to content

Instantly share code, notes, and snippets.

View crmsoft's full-sized avatar

Bonnie crmsoft

View GitHub Profile
@crmsoft
crmsoft / ping.sh
Created March 29, 2018 14:16
debain ping domains parallel
#!/bin/bash
response=$(ping -c 2 $1 | tail -1| awk '{print $4}' | cut -d '/' -f 3)
echo "$1 = $response"