本文介绍了为什么“命令后有额外的字符"?显示的 sed 命令行显示错误?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我给出了如下所示的命令行,
I have given the command line as shown below,
命令:
sed '/dump 0 $2 $3 $4 $5/dump 1 $2 $3 $4 $5/g' base_file.properties
错误显示
sed: -e expression #1, char 22: 命令后的额外字符
同时将s"选项设为
sed 's/dump 0 $2 $3 $4 $5/dump 1 $2 $3 $4 $5/g' base_file.properties
错误显示为
sed:-e 表达式 #1,字符 32:`s' 的未知选项
推荐答案
似乎某些变量正在扩展为包含 /
的值.使用不包含在任何变量中的不同分隔符,例如
It appears that some of the variables are expanding to values that contain a /
. Use a different delimiter that isn't contained in any of the variables, e.g.
sed 's@dump 0 $2 $3 $4 $5@dump 1 $2 $3 $4 $5@g' base_file.properties
(您的第一个命令不是有效的 sed
表达式.)
(Your first command isn't a valid sed
expression.)
这篇关于为什么“命令后有额外的字符"?显示的 sed 命令行显示错误?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!