5 lines
208 B
Bash
Executable File
5 lines
208 B
Bash
Executable File
for i in {6000..6500}
|
|
do
|
|
wget -O- "https://secure.runescape.com/m=hiscore_oldschool/overall.ws?table=0&page=$i" | grep user1= | sed 's/^.*user1=//'| sed 's/".*$//' | grep -v "Binary" >> botnames.txt
|
|
done
|