Comment 2 for bug 666680

Revision history for this message
Michele (mikelito) wrote :

I am using 1.0.2 from Maverick. I updated from 0.9.something/lucid, and I am not using profiles.

I realized that the same bug had already been posted, and the bug #664783 pointed me to the relevant python code....

It seems that on my system grep -Pv '(?s)%s.*?backintime' is not able to single out the two lines....

would using awk be an option? in that case
awk 'BEGIN{ll=-1} /#Back In Time system entry, this will be edited by the gui:/{ll=NR}{if ((NR-1)!=ll && NR!=ll) print $0}'
works for me.

thanks!