Skip to content

Instantly share code, notes, and snippets.

@douglasnaphas
Created August 6, 2015 23:02

Revisions

  1. douglasnaphas created this gist Aug 6, 2015.
    6 changes: 6 additions & 0 deletions awk_print_A-Z
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    $ echo "b" | awk '/[A-Z]/'
    b
    $ echo "a" | awk '/[A-Z]/'
    $ echo "z" | awk '/[A-Z]/'
    z
    $