Skip to content

Instantly share code, notes, and snippets.

@epequeno
Created September 20, 2016 22:44
Show Gist options
  • Save epequeno/f08a8779e52609a6584a8aac9449bc45 to your computer and use it in GitHub Desktop.
Save epequeno/f08a8779e52609a6584a8aac9449bc45 to your computer and use it in GitHub Desktop.
$ cat tmp.txt
one
two
three
four
five
six
other
$ awk '/^t/ {q=1}q' tmp.txt
two
three
four
five
six
other
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment