Skip to content

Instantly share code, notes, and snippets.

@rjp
Created February 18, 2011 11:11
Show Gist options
  • Save rjp/833546 to your computer and use it in GitHub Desktop.
Save rjp/833546 to your computer and use it in GitHub Desktop.
Turn clover-C of a bunch of iTunes tunes into a nice HTML table
awk -F\\t 'BEGIN{print"%html\n %body\n %table\n %tr\n %th Track\n %th Artist\n %th Album"}{printf(" %%tr\n %%td %s\n %%td %s\n %%td %s\n",$1,$3,$4)}' | recode utf8..html | haml
@rjp
Copy link
Author

rjp commented Feb 18, 2011

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment