Marge Simpson Poses For Playboy 413
FOSS Sexism Claims Met With Ire and Denial 1255
Left 4 Dead 2 Approved In Australia After Edits 134
Sloppy Linux Admins Enable Slow Brute-Force Attacks 391
UK Court Order Served Over Twitter, To Anonymous User Posing As Another 205
'09 Malibu Vs. '59 Bel Air Crash Test 496
Comment Re:Flame on (Score 1) 641
As mentioned, in other posts, "killall" or "pkill" do the trick. Additionally, awk is pretty handy for regex (and logic) matching on its own. Piping grep into awk is one of my pet peaves (of which I have 69105).
This might be cleaner (but still kills things with emacs as an argument):
# kill -9 `ps -ef | awk '/emacs/{print $2;}'`
This might be a bit more specific...
# kill -9 `ps -eopid,comm | awk '/emacs/{print $1;}'`
Alot of my old-school friends decry the use of xargs, but I'd rather pipe than arg-mangle (plus this gets rid of those visually deceptive singlequote+backquote):
# ps -eopid,comm | awk '/emacs/{print $1;}' | xargs kill -9
If you simply want to confound and taunt emacs users...
# pkill -STOP emacs
Or unending terror.
# { crontab -l ; echo '* * * * * pkill -STOP emacs' ; } | crontab
Comment Re:Flame on (Score 1) 641
SKA Telescope To Provide a Billion PCs Worth of Processing 186
DHS Ponders "Improving" Terrorism Alert System 320
Comment Re:I don't get it. (Score 1) 190
Sorry - couldn't help myself - if you're going to identify yourself as someone's better,
s/bald/hairless/; s/hairless/bold/;
Birdsong Studies Lead To a Revolution In Biology 117