To rename files, cd into the directory then\\
<code>
rename -v 's/^oldname/newname/' oldname*.*
</code>

This will rename all the files.\\

Note:
  -- The ''caret'' ^ means the begining of the filename
  -- A ''dollar sign'' $ means the end of the filename