Is there a way to move files in a directory (we have 1.7 million) to folders based upon a date? WOuld like to move all files created between 1-1-2010 and 2-1-2010 to a specific folder
I m trying to do some batch replacement for/with a fairly complex pattern So far I find the pattern as: find ( -name *.php -o -name *.html ) -exec grep -i -n hello {} + The string I want ...