Skip to content

Instantly share code, notes, and snippets.

@shoorick
Created August 19, 2011 05:35
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 shoorick/1156123 to your computer and use it in GitHub Desktop.
Save shoorick/1156123 to your computer and use it in GitHub Desktop.
Print field list from tab-separated file as POD-formatted list
head -n 1 tab-separated.txt \
| perl -na -F'\t' \
-e 'map { printf "=item %d\n\n%s / %s\n\n", $i++, chr(0x40+$i), $_ } @F '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment