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.
Accessファイルに次のような文字列があります。
/bin/XXX/bla.XXX.bla
XXXのすべての出現箇所を、この文字列内のYYYなどに置き換えるためにsedを使用したいと思います。gフラグ自体は、刺し傷が複雑で「/」が付いているため、おそらく機能しません。
誰か助けてもらえますか?ありがとう!
これを使って:
sed 's/XXX/YYY/g'
gすべてのオカレンスを置き換えることを表します
g
したがって、ファイルmyfile.txtがある場合は、次のようにします。
sed 's/XXX/YYY/g' myfile.txt > mynewfile.txt