On 2018-9-17 08:11 , Mark Brethen wrote: > Solved. The port I needed is texlive-fonts-recommended. However I need > to modify a tex file using reinplace but cannot get it to work. I don’t > think I understand regex within tcl. Essentially I need to replace > ‘Schˆpf' with 'Sch\”opf’ where ^ and \” are literals.
Reinplace uses sed under the hood, not Tcl's regexp. I'd suggest wrapping your pattern in braces so you're dealing with one less level of backslash substitution. The main.log will show the exact sed command that ends up being run. Please show your code if you still can't get it to work. - Josh
