Hi,
I have a file which contains \f\r. How do I go about inserting blank line after each occurrence of \f\r?
I used this to replace \r with \f\r. Now I want to insert blank line after it.
nawk 'NR%94==0{sub(/\r/,"\f\r")}1' $x > /tmp/$filename.temp
Thanks.