David Arnold wrote:
All,How would I use sed to erase %output=pdf from any file ending with .tex in the current directory and any subdirectories below it?
I don't know about sed, but here is a find/perl solution that would work
on linux:
find . -name \*.tex -exec perl -npi -e 's/%output=pdf/%/g' \{\} \;
Taco
_______________________________________________
ntg-context mailing list
[email protected]
http://www.ntg.nl/mailman/listinfo/ntg-context
