|
Unix is case sensitive, so file.jpg and file.JPG are two separate things. Whether a script was configure to detect either case or just one depends on the functions used in the script - eg. in php ereg() which is case sensitive vs eregi() which isn't. Probably best to use all lower case just in case, any batch renaming tool can do it in a split second.
|