我发现这个线程很有用 - 所以我想我会为我自己的问题添加答案。
我想从javascript中的节点应用程序编辑数据库配置文件(datastax cassandra),并且对于文件中的一个设置,我需要匹配一个字符串,然后替换它后面的行。
这是我的解决方案。
dse_cassandra_yaml='/etc/dse/cassandra/cassandra.yaml'
// a) find the searchString and grab all text on the following line to it
// b) replace all next line text with a newString supplied to function
// note - leaves searchString text untouched
function replaceStringNextLine(file, searchString, newString) {
fs.readFile(file, 'utf-8', function(err, data){
if (err) throw err;
// need to use double escape '\\' when putting regex in strings !
var re = "\\s+(\\-\\s(.*)?)(?:\\s|$)";
var myRegExp = new RegExp(searchString + re, "g");
var match = myRegExp.exec(data);
var replaceThis = match[1];
var writeString = data.replace(replaceThis, newString);
fs.writeFile(file, writeString, 'utf-8', function (err) {
if (err) throw err;
console.log(file + ' updated');
});
});
}
searchString = "data_file_directories:"
newString = "- /mnt/cassandra/data"
replaceStringNextLine(dse_cassandra_yaml, searchString, newString );
运行后,它将现有的数据目录设置更改为新的:
之前的配置文件:
data_file_directories:
- /var/lib/cassandra/data
配置文件后:
data_file_directories:
- /mnt/cassandra/data