Code, cooking, catman
or killall -9 process_nameorpkill -9 process_name
Thanks, this is exactly what I needed.
great an efficient, thanks
Great! Thanks a lot
What if the process names are similar and you get results for both? For example semimonthly and monthly. I tried using quotes but I still get results for both instead of one or the other
Another working way:ps -el | grep "startct" | awk '{ print $4 }' | xargs kill -9
or
ReplyDeletekillall -9 process_name
or
pkill -9 process_name
Thanks, this is exactly what I needed.
ReplyDeletegreat an efficient, thanks
ReplyDeleteGreat! Thanks a lot
ReplyDeleteWhat if the process names are similar and you get results for both? For example semimonthly and monthly. I tried using quotes but I still get results for both instead of one or the other
ReplyDeleteAnother working way:
ReplyDeleteps -el | grep "startct" | awk '{ print $4 }' | xargs kill -9