Skip to content

Instantly share code, notes, and snippets.

@derrickturk
Created May 9, 2023 16:28
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 derrickturk/cc426a66d57f31c7a5281003366c4fee to your computer and use it in GitHub Desktop.
Save derrickturk/cc426a66d57f31c7a5281003366c4fee to your computer and use it in GitHub Desktop.
flimsy "CSV" dumper
BEGIN { FS = "," }
NR == 1 {
for (i = 0; i < NF; ++i)
hdr[i] = $i
}
NR > 1 {
for (i = 0; i < NF; ++i)
print "[" i - 1 "]: " hdr[i] " = " $i
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment