1 |
$ grep -l Hoge test.php | xargs sed -i.bak -e 's/.*MyFunctions/require_once\(__DIR__ . "\/libs/g' |
対象となる複数のファイルの文字列を一括置換する

1 |
$ grep -l Hoge test.php | xargs sed -i.bak -e 's/.*MyFunctions/require_once\(__DIR__ . "\/libs/g' |