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.
文字列を検索して置換する方法を知っている人はいますか? たとえば、文字列があるとしましょう
string=".blah http://google.com.ph/tabs/1.5.8 setup https://yahoo.com.ph/root/blah"
1.5.8バージョンを検索してから に置き換えたい1.5.9。どうすればbashでできますか?
1.5.8
1.5.9
instring="version 1.5.8" outstring=${instring//1.5.8/1.5.9}