mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 20:41:01 +00:00
11 lines
141 B
Bash
11 lines
141 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
LIMIT=5985
|
||
|
a=4268
|
||
|
|
||
|
while [ "$a" -le $LIMIT ]
|
||
|
do
|
||
|
wget -O /dev/null http://www.ensl.org/log_files/handle/"$a"
|
||
|
let "a+=1"
|
||
|
done
|