2
:SEDがfindコマンドで作業していない私は、ディレクトリ内のすべてのファイルに対して、このsedスクリプトを実行しようとしている
sed.s:
/<constants>/a\
<const type="profElem" name="mission_description" value="NCEP and NCAR Reanalysis Monthly Means and Other Derived Variables"/>
が、私は実行するたびに:
find . -exec sed -f sed.s -i {} \;
私はエラーを取得する:
sed: -i may not be used with stdin
これはどのように機能するのですか?
ファイルリストを見るのは興味深いでしょう。あなたは 'findの結果を投稿できますか? -exec echo {} \; ' –