使用 sed 插入 TAB

发布于 2024-10-20 19:03:24 字数 328 浏览 1 评论 0原文

我使用这个命令:

sed -i "10 i \t\t\ttime.sleep(0.1) " /home/test_file

在第 10 行插入一行,如: sleep(0.1)

但我得到了

t<TAB><TAB>sleep(0.1)...

你能告诉我如何得到这个结果吗? 谢谢

PS。我在可执行的 bash 脚本中使用此命令。

I use this command:

sed -i "10 i \t\t\ttime.sleep(0.1) " /home/test_file

to insert at line 10 a line like: <TAB><TAB><TAB>sleep(0.1)

But I got

t<TAB><TAB>sleep(0.1)...

Can you tell me how to get this result?
thanks

PS. I use this command in an executable bash script.

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

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

发布评论

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

评论(2

绝情姑娘 2024-10-27 19:03:24

我认为问题在于 shell 和 sed 扩展元字符的方式之间的竞争。我尝试将第一个反斜杠字符增加三倍,这似乎对我有用:

sed -i "i \\\t\t\ttime.sleep(0.1) " tmp.tmp

I believe the problem is with competition between the way that the shell and sed are expanding the meta-characters. I've tried tripling the first backslash character and that seems to work for me:

sed -i "i \\\t\t\ttime.sleep(0.1) " tmp.tmp
我ぃ本無心為│何有愛 2024-10-27 19:03:24

似乎“\t”意味着我的主机(ubuntu18.04)上的一个TAB。下面是当我想在 *.json 文件内的第 50 行插入以 TAB 开头的新行时的命令行。

sed -i '50 i \t"opetin": true,' *.json

Seems like '\t' means a TAB on my host(ubuntu18.04). Below is my command line when i want to insert a new line beginning with TAB at the line 50 inside the *.json files.

sed -i '50 i \t"opetin": true,' *.json

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