2011/4/23 Seneca Cunningham <[email protected]>: > +awk '{ gsub("%0[aA]", "%0A\n"); print $0 }' | awk '
It is rarely neccessary to pipe awk to awk. Instead, I think you could set FS to "%0[aA]" and process every field in a for loop. -- - yiyus || JGL . -- You received this message because you are subscribed to the Google Groups "werc" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/werc9?hl=en.
