在 Linux 上用硬制表符替换 6 GB 文件中的空格字符

发布于 2024-11-24 12:03:59 字数 340 浏览 1 评论 0原文

我有一个 vi 命令,可以用硬制表符替换空格字符:

     vi myfile.txt
       : # To go to the last line 
          1,$s/ /\t/g   # Then I type in this to replace spaces by a tab

我如何使用 AWK 来做到这一点或 sed

I have a vi command that replaces spaces characters by a hard tab:

     vi myfile.txt
       : # To go to the last line 
          1,$s/ /\t/g   # Then I type in this to replace spaces by a tab

How can I do it with AWK or sed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空城仅有旧梦在 2024-12-01 12:03:59

除非您严格想要 sed/awk,否则 tr 是最佳选择:

tr ' ' '\t'  < inputfile > outputfile

Unless you strictly want sed/awk, tr is the best option for it:

tr ' ' '\t'  < inputfile > outputfile
泪眸﹌ 2024-12-01 12:03:59

几乎同样的事情适用于 sed,只需使用真正的选项卡而不是 \t

$ sed 's/ /  /g' < input_file > output_file
# a tab ---^^

如果您从 bash 命令行执行此操作,那么您需要这样做一对 Ctrl-VTab 来获取选项卡。

Almost the same thing works with sed, just use a real tab instead of \t:

$ sed 's/ /  /g' < input_file > output_file
# a tab ---^^

If you're doing this from the bash command line then you'll need to do a Ctrl-VTab pair to get a tab.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文