Mar 26, 2004 #1 larsin MIS Mar 18, 2003 16 US I know I can kill all processes by: ps -ef|grep username PID, but I have 130 users,with multiple logins. Need to slam all at once if possible.
I know I can kill all processes by: ps -ef|grep username PID, but I have 130 users,with multiple logins. Need to slam all at once if possible.
Mar 26, 2004 #2 theycallmetim Technical User Jun 27, 2003 127 US kill `ps -ef |grep USERNAMEPID | awk '{print $2}'` Upvote 0 Downvote