我有一个包含一系列文本文件的目录,想在每行之后添加一个空白行。
如果我只想更改一个文件,可以这样做。
return [
'on beforeRequest' => function () {
if (file_exists(__DIR__ . '/params.php')) {
Yii::$app->params = require __DIR__ . '/params.php';
} else {
throw new Exception('Error', 1000);
}
}
// rest of app config
];
但是,如何更改目录中的所有文件。有点像下面的。
sed -i $' \n ' 00000BD7_ar.txt
答案 0 :(得分:0)
sed可以处理多个文件。
sed -i $' \n ' *