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.
次のスクリプトで、「ユーザー名」のすべての出現を、たとえば「+」で置き換えたいのですが、最初の出現のみを置き換えます
ls -al | sed 's/username/+/'
これは、デフォルトでsedがどのように機能するかです? 前もって感謝します。
g(グローバル)修飾子が必要です:
g
sed 's/username/+/g'