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.
sed を使用して、og で終わる 3 文字の単語をカエルという単語に置き換える必要があります。私はこれがうまくいくと思った:
sed 's/?og/frog/' filename
しかし、そうではありませんか?
これはあなたのために働くかもしれません。
sed 's/\<.og\>/frog/g' filename . matches one character \< beginning of word anchor \> end of word anchor