DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Kill All Process In One Shot
#list all process of t program
ps au |grep ./t |awk '{ print $2 }'
#Kill all process of t program
kill -9 `ps au |grep ./t |awk '{ print $2 }'`
replace ./t string for your grep condition





