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.
与えられた文字列:dog apple orange banana
dog apple orange banana
私はそれを作る必要があります:monkey apple cow banana
monkey apple cow banana
つまり、sed を 2 回呼び出す必要はありません。
次の sed の例で問題が解決するはずです。sed では、複数の -e スイッチを使用できます。これにより、一度に複数のものを置き換えることができます。
sed -e 's/dog/monkey/g' -e 's/orange/cow/g'
;コマンドをキューに入れるために使用します。
;
sed -e 's/dog/monkey/g;s/orange/cow/g'