使用 sed 在每行的开头插入文本
如何使用 sed 来在
rm -rf
文件的每一行的开头插入?
How would one go about using sed in order to insert
rm -rf
at the start of each line of a file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
编辑
Xargs 是删除另一个文件中列出的所有文件的更简单方法
EDIT
Xargs would be simpler way to delete all of the files listed in another file
你应该使用
You should use
有时您必须使用 sed 来使用原始方法,特别是当您想要执行诸如
xargs 之类的操作时, xargs 似乎不喜欢某些命令创建的输出并在第一行之后放弃。 IE:
Sometimes you have to go with the original method using sed, especially when you want to do things like
xargs
doesn't seem to like the output created by some commands and gives up after the first line. ie: