Como substituir um personagem de uma corda em bash

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

echo $final
Shy Stoat