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.
すべての *.mvel ファイルを検索し、「D1000」を「D4000」に置き換えるスクリプトがあります。しかし、sed は最後に新しい行を追加します。ファイルの最後にある改行を避けるにはどうすればよいですか?
これが私のスクリプトです:
find . -name '*.mvel' -exec sed -i '' 's/D1000/D4000/g' '{}' \;