㈠ sed -i .bak 's/this/the/' d 这条命令有错误吗
这是很早之前的一个问答了,但我想提问者并没有真正的搞清楚原因,而采纳的答案我想也并不是你想要的,这里我想说下我的答案。
查看$ man sed,可以看到里面对于-i选项这么写的:
-i[SUFFIX],--in-place[=SUFFIX]
editfilesinplace(makesbackupifSUFFIXsupplied)
所以可以知道出现问题的原因在于,你的命令中-i和后面的.bak之间多了一个空格,正确的写法应该是没有空格的,如下:
sed-i.bak's/this/the/'d
你可以试下,想必可以得到你期待的结果。另外.bak也可以用.和其它的任意文本结合使用,比如.backup或者.log 等等都是可以的。
希望可以帮助到以后还遇到这个问题的人。
㈡ sed命令在macOS Seirra上报错sed: -i may not be used with stdin
MacOS使用的是sed的BSD版本,它对-i选项答核的处理略有不同。
sed -i需要带一个局饥字符串作为备份源文件的文件名称,如果这个字符串长度为0,则不备份。
例如修改filename.txt,清腊掘
使用命令格式:sed -i "_bak" '动作' filename.txt
输出为filename.txt_bak(同原文件)和filename.txt(修改后的文件)。
如果不想输出备份文件:sed -i "" '动作' filename.txt
参考文章:https://blog.csdn.net/fdipzone/article/details/51253955
㈢ 关于Linux里的sed命令。
Sed is a nondestructive editor. It will display the edits you make on your screen, but it will not change the file you are editing. To really reflect the edits in the file, you must redirect the output to another file, and then rename the orginal file
sed的特点就是非破坏(nondestructive),流水行(streamlined),非交互(noninteractive)的编辑器。
非破坏就是指不会修改原文件,它会将修改的结果标准输出到屏幕上,你如果想保存,需要使用IO重定向的方式保存:
如:
sed ‘s/home/home1’ 1.txt >2.txt
这样做的原因是,如果你修改了原文件的话,你没法使用word,vim,txt的undo功能撤销修改,恢复原来的文件。所以,sed会将修改之后的文件输出到屏幕,你看到修改满意的话,再重定向到其他文件。就完成了修改。明白否?
-e是启用多行命令 上述两条编辑命令都是一行命令,所以看不出效果。