rootpages
rootpages copied to clipboard
[programming][shell] Find and replace
trafficstars
Find and replace with a variable by using the following synatx:
${<VARIABLE>/<FIND>/<REPLACE>}
Example:
$ foobar=123
$ echo ${foobar//1/4}
423