I wrote:
> awk '!/ \\$/ {printf "%s\n", $0} / \\$/ {NF=NF-1; printf "%s", $0}' ipf.rules | ipf
> -Fa -f -This contains a bug --- spaces get lost when the continued line is longer than two physical lines. Slawek's sed command is clearly better. --Bill
