################################################################################ # File : xmp.awk # Author(s): Andreas Huggel (ahu) # History : 23-Nov-07, ahu: created # # Description: # Awk script to convert an XMP property list to XML format used in the # documentation. # $ taglist [xmpList] | awk -f xmp.awk > [xmpList].xml ################################################################################ BEGIN { FS = ", " # ,\t print ""; print ""; print "" print "
" print "XMP tags defined in Exiv2" print "" print "

Some description

" print "

Click on a column header to sort the table.

" print "
" print "
" print "" } { print " "; print " " $1 "" print " " $2 "" print " " $3 "" print " " $4 "" print " " $5 "" print " " $6 "" print " "; } END { print "" print "
" }