Skip to content

Instantly share code, notes, and snippets.

@bashyal
Created February 21, 2014 22:59
Show Gist options
  • Save bashyal/9145373 to your computer and use it in GitHub Desktop.
Save bashyal/9145373 to your computer and use it in GitHub Desktop.
Grep odd/even numbers
> cat search.log | awk '{ print $1 }' | grep [24680]$ | wc -l # Count even numbers
> cat search.log | awk '{ print $1 }' | grep [13579]$ | wc -l # Count odd numbers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment