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
a a b c
$ cat head.txt
a a b c
