Possible Duplicate:
rename multiple files at once in unix
I would like to rename all files from a folder using a regex (add a name to the end of name) and move to another folder.
It my opinion, it should be looking like this:
mv -v ./images/*.png ./test/*test.png
but it does not work.
Can anyone suggest me a solution?