There are multiple files in a directory that begin with prefix fgh, for example:
fgh
fghfilea fghfileb fghfilec
I want to rename a
Another possible parameter expansion:
for f in fgh*; do mv -- "$f" "jkl${f:3}"; done