mkws
today: writing a script to export a bunch of etherpads and incorporate them in my site. Lots of fun learning about awk
's gsub
to make sure all the links in the pads are internally consistent in what mkws
will output; felt particularly pleased when this line worked as expected:
awk '{gsub(/\\/nfld.uk\\/[a-zA-Z0-9_]*/, "&.html")}1' parsed_master.html > final_master.html
mkws
works great with awk
! Maybe you could pipe to awk
instead of using a temporary file?