I have this AWK script which replaces every form feed character (0x0C, 12) with 5 new line characters:
f=${*:-"-"}
awk 'BEGIN {FF=sprintf("%c",12); LF=sprintf("\n\n\n\n\n")}
{i1=0;for(i2=i1+1;i2<=length($0);i2++) if(substr($0,i2,1) == FF)
{print substr($0,i1+1,i2-i1-1) LF; i1=i2}
print substr($0,i1+1,length($0)-i1)}' $f
Now what I want to do is replace only the last occurence of this symbol in the file. Cannot think of a straightforward solution. How do I detect the last line? Any ideas?
AWK is preferable (performance issues).