Forgot your password?
typodupeerror

Comment Re:Without the silly flash interface (Score 1) 332

#!/bin/sh
if test $# -eq 2
then
response=`curl -s "http://aimfight.com/getFight.php?name1=$1&name2=$ 2"`
noamp=`echo $response | tr '&' ' '`
noeql=`echo $noamp | tr '=' ' '`
echo $1 = $(echo $noeql | awk '{ print $4 }')
echo $2 = $(echo $noeql | awk '{ print $6 }')
else
echo Usage aimfight [screenname1] [screenname2]
fi

Slashdot Top Deals

Asynchronous inputs are at the root of our race problems. -- D. Winker and F. Prosser

Working...