Posts Tagged ‘shell-script’

Finding files which has been created few days back

Wednesday, June 9th, 2010

find . -iname “*.PNG” -mtime -4 -print

-iname option is to search ignoring the case

A command that will find all sleep processes running on the system and kill them

Wednesday, February 3rd, 2010

ps -eaf|cut -d f2|tr -s ” “|kill