为什么会用“sed”改变?通过 Putty 没有反映在 Cpanel 中?

发布于 2024-12-08 23:52:43 字数 161 浏览 0 评论 0原文

我通过 Putty 用“sed”进行了单词替换,我看到该单词已被替换,但是当我在 cpanel 中打开文件时,文件没有任何更改。

这是命令

sed 's/word1/word2/g' file.php

为什么会发生这种情况?

I did a word replace with "sed" via Putty and i see that the word was replaced but when I open the file in cpanel there is no change to the file.

Here's the command

sed 's/word1/word2/g' file.php

Why would this happen?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

诺曦 2024-12-15 23:52:43
sed 's/word1/word2/g' file.php

打印出文件的更改版本。如果要就地修改文件,请使用 -i 选项:

sed 's/word1/word2/g' -i file.php
sed 's/word1/word2/g' file.php

prints out the changed version of the file. If you want to modify the file in-place, use the -i option:

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