Is there a way to cascade pipes in awk? I'm trying to do something
like the following:
{ print | "tr [a-z] [A-Z]" | <<other stuff that will manipulate the
now-upper-case text >>
}
Any other suggestions to accomplish the same thing would be
appreciated.