使用 sed 在每行的开头插入文本

发布于 2024-09-30 15:34:57 字数 72 浏览 3 评论 0原文

如何使用 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 技术交流群。

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

发布评论

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

评论(3

宛菡 2024-10-07 15:34:57
sed 's/^/rm -rf /' filename

编辑

Xargs 是删除另一个文件中列出的所有文件的更简单方法

xargs -a filename rm -rf
sed 's/^/rm -rf /' filename

EDIT

Xargs would be simpler way to delete all of the files listed in another file

xargs -a filename rm -rf
温折酒 2024-10-07 15:34:57

你应该使用

    #if you want to add only to each line matching string
    sed 's/\(^matchingstring.*$\)/"yourtext" \1/' myfile.txt
    
   #if you want to add to each line
    sed 's/^/"yourtext"/' myfile.text 

You should use

    #if you want to add only to each line matching string
    sed 's/\(^matchingstring.*$\)/"yourtext" \1/' myfile.txt
    
   #if you want to add to each line
    sed 's/^/"yourtext"/' myfile.text 
没︽人懂的悲伤 2024-10-07 15:34:57

有时您必须使用 sed 来使用原始方法,特别是当您想要执行诸如

csf -d ipaddr.

xargs 之类的操作时, xargs 似乎不喜欢某些命令创建的输出并在第一行之后放弃。 IE:

sed 's/^/csf -d /' hacks >>hacks.sh

Sometimes you have to go with the original method using sed, especially when you want to do things like

csf -d ipaddr.

xargs doesn't seem to like the output created by some commands and gives up after the first line. ie:

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