s/foo/bar/
is a sed
command to replace string foo
with bar
. Adding g
at the end means replacing all matches instead of one. This is a fancy way of telling someone they should've said something differently.
s/foo/bar/
is a sed
command to replace string foo
with bar
. Adding g
at the end means replacing all matches instead of one. This is a fancy way of telling someone they should've said something differently.