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.
特定の世界を含む行を検索し、その末尾に文を追加したいファイルがあります。どうすればこれを行うことができますか?
cat test.txt |sed 's/searchString/&addedString/' > new.txt
「&」は一致した文字列を参照します。これが実際の例です
qifei@qifei] cat test.txt ~ aaaa bbbb cccc aaaa qifei@qifei] cat test.txt |sed 's/aaaa/&bbbb/' > new.txt ~ qifei@qifei] cat new.txt ~ aaaabbbb bbbb cccc aaaabbbb