Solaris 上“sed -i”的替代方案

发布于 2024-09-16 06:45:59 字数 202 浏览 5 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(3

月隐月明月朦胧 2024-09-23 06:45:59

它与 sed -i 不完全相同,但我遇到了类似的问题。您可以使用 perl 执行此操作:

perl -pi -e 's/find/replace/g' file

复制/移动仅适用于单个文件。如果您想替换目录和子目录中每个文件中的某些文本,则需要一些可以就地完成此操作的东西。您可以使用 perl 执行此操作并找到:

find . -exec perl -pi -e 's/find/replace/g' '{}' \;

It isn't exactly the same as sed -i, but i had a similar issue. You can do this using perl:

perl -pi -e 's/find/replace/g' file

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:

find . -exec perl -pi -e 's/find/replace/g' '{}' \;
自在安然 2024-09-23 06:45:59

您需要自己复制 -i 的行为,方法是将结果存储在临时文件中,然后用临时文件替换原始文件。这可能看起来不太优雅,但这就是 sed -i 幕后所做的一切。

sed '$ s/OLD/NEW/g' test > test.tmp && cat test.tmp > test && rm test.tmp

如果您愿意,可以使用 mktemp 使其更加健壮:

tmp=$(mktemp test.XXXXXX)
sed '$ s/OLD/NEW/g' test > "$tmp" && cat "$tmp" > test && rm "$tmp"

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 all sed -i is doing under the covers.

sed '$ s/OLD/NEW/g' test > test.tmp && cat test.tmp > test && rm test.tmp

If you care you could make it a bit more robust by using mktemp:

tmp=$(mktemp test.XXXXXX)
sed '$ s/OLD/NEW/g' test > "$tmp" && cat "$tmp" > test && rm "$tmp"
无风消散 2024-09-23 06:45:59

另外一个在 bash 环境中的 Solaris 11 主机上运行的“一行”命令:

for i in `cat strings_to_delete.txt`
do 
    sed "/$i/d" file.to_edit.txt > file.edited.txt &&
        mv file.edited.txt file.to_edit.txt
done

它从 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:

for i in `cat strings_to_delete.txt`
do 
    sed "/$i/d" file.to_edit.txt > file.edited.txt &&
        mv file.edited.txt file.to_edit.txt
done

It deletes strings from file strings_to_delete.txt in file.to_edit.txt. File strings_to_delete.txt contains multiple lines with one string per line.

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