Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Can TPIPE do this?

May
12,845
164
Unix's TR replaces each character in a list of characters with the corresponding character from a second list of characters, like this.

Code:
v:\> echo "&_+_|_<_>" | tr "&+|<>" "12345"
"1_2_3_4_5"

Can TPIPE do that? The alternative seems to be five /replace parameters (ugh!) and thus, I imagine, five times through each line.
 
Back
Top