Skip to content

Instantly share code, notes, and snippets.

@matlink
Last active February 16, 2018 09:47
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 matlink/ed627737cf366f14e9e5aae8bfbefeda to your computer and use it in GitHub Desktop.
Save matlink/ed627737cf366f14e9e5aae8bfbefeda to your computer and use it in GitHub Desktop.
print lines having 1st column lower than
NUMBER=2880000000
awk '{ if ($1 < '"$NUMBER"') {print $0} }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment