Skip to content

Instantly share code, notes, and snippets.

@ksomemo
Created May 27, 2014 07:34
Show Gist options
  • Save ksomemo/52b09c676f0079c41a36 to your computer and use it in GitHub Desktop.
Save ksomemo/52b09c676f0079c41a36 to your computer and use it in GitHub Desktop.
#!/bin/sh
cat a.log | awk 'NR<=7 { if ( $1 ~ /^[0-9]+$/ ) { print$1 } }' | sort | uniq | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment