Peng Yu <[email protected]> writes:

> I have the following file head.txt. I'm wondering what the correct way
> is to change the tab to a backslash and the character 't'.
>
> $ tr "\t" "\\t" <head.txt

The tr utility can only change one character into another one, in a
one-to-one relationship, or remove selected characters.  Incidentally,
due to your use of double quotes this is a no-op ("\t" and "\\t" are the
same).

None of the utilities that are part of coreutils can do what you want,
but you can use sed, for example:

$ sed 's/\t/\\t/g' <head.txt

Andreas.

-- 
Andreas Schwab, [email protected]
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


Reply via email to