for each in my_module.*;
> do
> echo $each
> doneThis'll output something like this (depending on your files, of course):
my_module.info
my_module.install
my_module.module
locate Lite.phpFinds files matching the pattern, in this case Lite.php, in your file system.
rename oldname newname oldname.*Given a directory of files with names:
oldname.info oldname.install oldname.module README.txt
Running the above command would result in:
newname.info newname.install newname.module README.txt
Do a man rename for more info.