curl-users
Re: Issue with multiple URLs in config file
From: Brian Dessent <brian_at_dessent.net>
Date: Wed, 29 Mar 2006 17:20:47 -0800
Date: Wed, 29 Mar 2006 17:20:47 -0800
Ralph Mitchell wrote:
> OK, I'm curious. Why not do something like this:
>
> cat url_list.txt | while read url
> do
> curl --remote-name $url
> done
Or just:
xargs -n1 curl -O <url_list.txt
Brian
Received on 2006-03-30