Skip to content

Instantly share code, notes, and snippets.

@pstjean
Created February 18, 2021 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pstjean/1914cb730589ed591cb5ca6721ed0803 to your computer and use it in GitHub Desktop.
Save pstjean/1914cb730589ed591cb5ca6721ed0803 to your computer and use it in GitHub Desktop.
Print pings with times over a certain number of milliseconds
#!/bin/bash
# Usage: ./pingover.sh google.com 5
# Based on default format of BSD ping shipped with macOS
ping $1 | awk -F '[= ]' "(\$10 >= $2)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment