Skip to content

Instantly share code, notes, and snippets.

View krobelus's full-sized avatar

Johannes Altmanninger krobelus

  • Austria
  • 12:21 (UTC +02:00)
View GitHub Profile
#!/usr/bin/env bash
ping_cancelled=false
until ping -c1 "$1" &>/dev/null; do :; done &
trap "kill $!; ping_cancelled=true" SIGINT
wait $!
trap - SIGINT
echo "Done pinging, cancelled=$ping_cancelled"