Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ディレクトリ内のすべてのテキスト ファイル (*.log) にテキスト行を追加したいと考えています。その理由は、アプリケーション ログに「マーカー」テキストを挿入してブレークポイントを挿入したいからです。
ありがとう。
「for」ループを使用する 1 つの方法:
for i in *.log; do echo "MARKER" >> "$i"; done
perl -i -lne 'if(eof){print $_."\MARK"}else{print}' *.log
sed を使用:
sed -i '$a MARKER' *.log