How to substitute expression globally with bash bracket substitution syntax?

I want to use the bash syntax ${var/pattern1/pattern2} to replace the content of $var but for all matching patterns pattern1 instead of the first one.

$ A=aa
$ echo ${A/a/b}
ba

I want to get bb instead of ba.

1 Answer

You can try this syntax which gives output:

$ A=aa
$ echo ${A//a/b}
bb

${A//a/b} replaces all the matches of a with b. Whereas, ${A/a/b} will replace only 1st match of a.

More details about Bash Strings Manipulation can be found here.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like