repeat 25 times
set foo to padNum(n)
set tURL to bURL & foo & ".html"
try
set bar to do shell script "curl -s " & tURL & " | grep
'\"made\"'"
end try
if bar is not in myList then
set end of myList to bar
end if
set n to n + 1
end repeat
myList
on padNum(c)
set c to c as string
repeat until (count of c) is 5
set c to "0" & c
end repeat
return c
end padNum
--
Martin Orpen
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/applescript-users/email@hidden