#nawk script to convert filename to html code pointing at it # #WBL 12 Oct 2001 # BEGIN { } (NF>0) { for(i=1;i<=NF;i++) { printf("
  • %s ",$i,$i); } printf("\n"); } END { }