I'm trying to use the following regular expression in grep (searches for mixed case PNG files).
[A-Z]+[\w.]*\.[pPnNgG]{3}[\\"')]*.*$
When I enter the command, my shell displays a > looking for more input.
I can use grep for some basic regular expressions, but I've never quite gotten the handle of using it with more advanced regular expressions.
FWIW, this is in Cygwin on Windows 7.
.pPnNgGfiles regardless how they are spelled/cased and rename them to$name.png, renaming a file that are already named$something.pngwont make a difference. – Nifle Oct 18 '10 at 20:41