Mac下用sed报错 command c expects followed by text

梦想的初衷 提交于 2020-03-27 07:16:24

一条很简单的替换文本的命令:

1 sed -i 's/www.a.cn/www.b.com/g' common.sh

执行时报错command c expects \ followed by text
也有可能报错 invalid command code W

但是同样的命令在服务器上是可以正确执行的,看了mac下的man sed,里面-i选项中的解释:

     -i extension
             Edit files in-place, saving backups with the specified extension.  If a zero-length extension is given, no backup will be
             saved.  It is not recommended to give a zero-length extension when in-place editing files, as you risk corruption or par-
             tial content in situations where disk space is exhausted, etc.

 

大概的意思就是说用-i的选项时mac会进行强制备份,所以你必须给出一个后缀名进行备份,如果你不想进行备份,直接用空字符即可

1 sed -i 's/www.a.cn/www.b.com/g' common.sh

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!