codice:
#!/bin/bash
for i in \[abc\]*
do
   TMP=`ls "$i" | sed 's/\[abc\] //'`
   mv "$i" "$TMP"
done
Non testato, non mi assumo responsabilità