Shell Commands Cheat Sheet

Find files modified within last 10 minutes [crayon]find . -type f -mmin -10 -exec ls -al {} \;[/crayon] Find files modified within last 24 hours [crayon]find . -type f -mtime -1 -exec ls -al {} \;[/crayon] Run Siege Benchmark [crayon]siege -c10 -b -i -t15s http://www.yourstore.ch[/crayon] Convert multiple PSD files to JPG with ImageMagick [crayon]mogrify -format jpg […]

Read More