There are multiple files in a directory that begin with prefix fgh, for example:
fgh
fghfilea fghfileb fghfilec
I want to rename a
rename might not be in every system. so if you don't have it, use the shell this example in bash shell
for f in fgh*; do mv "$f" "${f/fgh/xxx}";done