Skip to content

Instantly share code, notes, and snippets.

@wimstockman
Created March 10, 2018 07:55
Show Gist options
  • Save wimstockman/a4b3622d209b3c0b311684dd99c17239 to your computer and use it in GitHub Desktop.
Save wimstockman/a4b3622d209b3c0b311684dd99c17239 to your computer and use it in GitHub Desktop.
Awk tips and tricks
//multidimensional arrays in gawk
for (i in arr) for (j in arr[i])
print i,j, arr[i][j]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment