## Activate links and fix formatting for HTML; perl -ne ' chomp; unless($_){ print "

\n"; next; } s/(http:\/\/\S+)/$1<\/a>/; print "$_ " ' README > readme.html ## Wikify; for i in \ 'Protein Data Bank' \ 'Structural Classification of Proteins' \ 'RasMol' \ 'Perl'; do replace \ "$i" \ "$i" \ -- readme.html; done;