Do you have any language restraints? I would recommend simply using a python script to do so; it is quite easy to rename files using the os module.
Code given your files are in a directory, dirName:
import os dirName = "/path/to/files" for filename in os.listdir(dirName): if not filename.startswith("."): if filename[-1] is "#": os.rename(filename,"." + filename)