Skip to content

Instantly share code, notes, and snippets.

@andyxning
Created August 19, 2015 12:44
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 andyxning/d5ac533e5fb21dfa9ebb to your computer and use it in GitHub Desktop.
Save andyxning/d5ac533e5fb21dfa9ebb to your computer and use it in GitHub Desktop.
element not in an array test in awk
# [reference 1](http://www.unix.com/302702781-post2.html)
# awesome in using Ternary Operator
awk '
BEGIN {
a["1"]="a";
a["2"]="b";
a["3"]="c";
}
{ print !( $1 in a) ? "x" : a[$1]; }
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment