"Grant Ballard" <[EMAIL PROTECTED]> wrote:
> I can't get tr to redirect to a file or pipe to another command.
> Is there something I'm doing wrong (or a version that handles this better)?
>
> specific command syntax
> tr -d \" > test.txt
>
> INPUT:
> "d5902589"
>
> desired OUTPUT:
> d5902589

That works fine for me.
What shell are you using?
I'm using bash.

If you're using a substandard shell, it might
help to write it like this instead:

  tr -d '"' > test.txt


_______________________________________________
Bug-textutils mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-textutils

Reply via email to