mirror of
https://gitlab.com/2009scape/singleplayer/windows.git
synced 2026-08-01 14:39:18 -06:00
4 lines
208 B
Bash
Executable file
4 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
|