Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Bash by carado ( 16 years ago )
#!/bin/bash
freinds="NTag carado M@teo21"
while sleep 10
do
clear
wget http://www.siteduzero.com/connectes.html -O .tempfile -o .log
for i in $freinds
do
if cat .tempfile | grep $i > /dev/null
then
echo -n "$i - "
for j in `cat .tempfile | grep $i -A 5 -m 1 | cut -d '>' -f 2 | cut -d '<' -f 1`
do
if [ ! -z $j ]
then
echo -n "$j "
fi
done
echo ""
fi
done
done
Revise this Paste
Children: 18576