What commands would you like to exist off computers?

Page 2 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.

angedinoir

Senior member
Feb 16, 2005
202
0
0
mount sally /dev/cock
mount becky /dev/face

kill -9 nohup Hyperblaze

Wait I don't need a computer command for that... Moving on nothing to see here.
 

BurnItDwn

Lifer
Oct 10, 1999
26,353
1,862
126
Originally posted by: Hyperblaze
Originally posted by: CorporateRecreation
kill -9 hyperblaze

that wouldn't work.

You would need to nuke a process id.

I'm sure you could do a

ps -aux | grep hyperblaze | awk 'print $2'' | kill -9 $

(I think)

edit: actually....you'd have a better chance with this...

#!/bin/sh
file=/sbin/hyperblaze
name=$(ps --no-headers -l -C hyperblaze)
echo $name > $file
count=0
for i in $(cat $file | tr '' '~')
do
if [ $count -eq 3 ]; then

echo $i
kill -INT $i
fi
let count=$count+1
done

I tested it (with different variables, it works)




I like xargs.

ps -ef |grep Hyperblaze|grep -v grep|awk '{print $2}'|xargs -i kill -9 {}