Skip to content

Instantly share code, notes, and snippets.

@antoineclaval
Created November 19, 2022 18:37
Show Gist options
  • Save antoineclaval/03b3d6614f91e059067017ca7ce1d5a8 to your computer and use it in GitHub Desktop.
Save antoineclaval/03b3d6614f91e059067017ca7ce1d5a8 to your computer and use it in GitHub Desktop.
Bash string replace without sed / awk
string="abc"
final=${string//[a]/b}
echo $final
// "bbc"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment