Tag: unix
-
Search for files modified in the last X amount of days in UNIX
Searches for files modified up to 2 days ago. find ./ -type f -mtime -2 -exec ls -al {} \
-
How to tar a directory and only include certain file types
find myProjectDirectory -type f \( -name \*\.php -o -name \*\.js -o -name \*\.css -o -name \*\.inc \) | xargs tar -rf myProjectTarName.tar