Skip to content

Instantly share code, notes, and snippets.

@krobelus
Forked from Memphizzz/bash to fish
Created February 22, 2019 10:39
Show Gist options
  • Save krobelus/47ac496158ba65fa82236403c54915e2 to your computer and use it in GitHub Desktop.
Save krobelus/47ac496158ba65fa82236403c54915e2 to your computer and use it in GitHub Desktop.
#!/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"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment