Slashdot Mirror


User: DBergere

DBergere's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Re:Without the silly flash interface on Rate Your IM Popularity · · Score: 1

    #!/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