Comment remplacer un caractère d'une chaîne en bash

string="abc"
final=${string//[a]/b}

echo $final
Shy Stoat