« Earlier 2 items total Later »

On this page: 

View processes, grep out by user and then kill all their PIDs

ps axu | grep user | kill -9 `awk ‘{print $2}’`

Sort a list of processes by users into more

ps axu | sort -rn | more

« Earlier 2 items total Later »