我正在尝试替换配置文件中的一些路径。为此,我正在尝试使用 sed。
我的文件看起来像这样:
-Djava.util.logging.config.file=/tmp/tmp/tmp/config bla.bla
我想替换/tmp/tmp/tmp/config
并保持 bla.bla 不变。根据http://regexpal.com/和http://regexr.com?362qc我应该使用
sed -e 's/logging.config.file=[^\s]+/logging\.config\.file\=\/new/g' file
但它不起作用。