我想在配置文件中替換一些路徑。要做到這一點,我正在嘗試使用sed。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
但它不工作。