It sounds to me like you could do the equivalent with a simple shell script. For example:
while read url do wget --limit-rate=2k "$url" # Your commands go here. done < URL-LIST-FILE
It sounds to me like you could do the equivalent with a simple shell script. For example:
while read url do wget --limit-rate=2k "$url" # Your commands go here. done < URL-LIST-FILE