空格转<TAB>?

空格转<TAB>?

什么命令可以把文件里的空格转成<TAB>制表符?
我也刚开始学shell
花了半个小时才算调试出一个方法来
这是我在linux公社的第一贴啊
5555555555,我的第一次就这么...........

[code:1]
[root@TestServer /]# cat t.txt
noname test hell
[root@TestServer /]# sed -n 's/ /\t &/pg' t.txt >tt.txt
[root@TestServer /]# cat tt.txt
noname    test    hell
[root@TestServer /]#
[/code:1]