使用 sed 插入 TAB
我使用这个命令:
sed -i "10 i \t\t\ttime.sleep(0.1) " /home/test_file
在第 10 行插入一行,如:
但我得到了
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为问题在于 shell 和 sed 扩展元字符的方式之间的竞争。我尝试将第一个反斜杠字符增加三倍,这似乎对我有用:
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:
似乎“\t”意味着我的主机(ubuntu18.04)上的一个TAB。下面是当我想在 *.json 文件内的第 50 行插入以 TAB 开头的新行时的命令行。
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.