为什么会用“sed”改变?通过 Putty 没有反映在 Cpanel 中?
我通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
打印出文件的更改版本。如果要就地修改文件,请使用
-i
选项:prints out the changed version of the file. If you want to modify the file in-place, use the
-i
option: