Lets say you need to delete a bunch of files from a directory like all the vssver2.scc files or something similar. You could manually delete each file or you could use some quick command line fu:

find /path/to/directory -name "file.name" -exec rm -f {} \;