|
|
|
|
Blog by JasmineCorp | Create your own Blog
|
RSS Feed | Login |
This is my Perl Tips and Explanation page to explain how some of the common things work.
|
kill process with grep and awk By Vinod at 2008-07-02 08:35:48
|
Some times you want to kill process that have certain keywords in the command line.
Here is how to kill them with grep and awk. ps -efw | grep "keyword" | awk '{print kill $2}'
|
Permalink | Comments (0) |
Comments
|
To add a comment please login by clicking here
|
|