How to replace certain position after match using sed in Ubuntu?
I have a line I want to replace such as 'baseurl' => 'https://231.231.231.231' But I only want it to replace the https://231.231.231.231 part. Basically I want it to be 'baseurl' => 'myvaluehere' I have tried sudo sed -i "s|'baseurl'|${value1}|g" file.php…