Solaris 上“sed -i”的替代方案
在 Linux 上,sed -i
将就地修改输入文件。但它在 Solaris 上不起作用。
sed -i '$ s/OLD/NEW/g' test
sed: illegal option -- i
在 Solaris 上可以使用什么来代替 sed -i
?
On Linux sed -i
will modify the input files in place. It doesn't work on Solaris, though.
sed -i '$ s/OLD/NEW/g' test
sed: illegal option -- i
What can I use in place of sed -i
on Solaris?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它与 sed -i 不完全相同,但我遇到了类似的问题。您可以使用 perl 执行此操作:
复制/移动仅适用于单个文件。如果您想替换目录和子目录中每个文件中的某些文本,则需要一些可以就地完成此操作的东西。您可以使用 perl 执行此操作并找到:
It isn't exactly the same as sed -i, but i had a similar issue. You can do this using perl:
doing the copy/move only works for single files. if you want to replace some text across every file in a directory and sub-directories, you need something which does it in place. you can do this with perl and find:
您需要自己复制
-i
的行为,方法是将结果存储在临时文件中,然后用临时文件替换原始文件。这可能看起来不太优雅,但这就是 sed -i 幕后所做的一切。如果您愿意,可以使用
mktemp
使其更加健壮:You'll need to replicate
-i
's behavior yourself by storing the results in a temp file and then replacing the original file with the temp file. This may seem inelegant but that's allsed -i
is doing under the covers.If you care you could make it a bit more robust by using
mktemp
:另外一个在 bash 环境中的 Solaris 11 主机上运行的“一行”命令:
它从
file.to_edit.txt
中的文件strings_to_delete.txt
中删除字符串。文件strings_to_delete.txt
包含多行,每行一个字符串。One more "one-line" command which works on Solaris 11 host in bash enviroment:
It deletes strings from file
strings_to_delete.txt
infile.to_edit.txt
. Filestrings_to_delete.txt
contains multiple lines with one string per line.