HTTrack Website Copier
Free software offline browser - FORUM
Subject: Re: How to launch several projects at a time
Author: Xavier Roche
Date: 07/07/2003 19:32
 
> I would like to use a file text containing the list of 
these
> Url but I still need a specific 'project name' for each. 
Is
> there a way to associate a project name with each Url in 
a list?
Err nope - you have to run one instance each time. But 
using some scripting it should be okay?
for i in `cat mylist.txt`; do
url=`echo $i|cut -f1 -d ' '`
path=`echo $i|cut -f2- -d' '`
echo "launching httrack for $url in $path .."
httrack <parameters does here> "$url" -O "$path"
done

With the mylist.txt as below:
www.example.com /foo/example
www.example2.com /bar/otherexample

(On Windows you can do the same using the cygwin shell)
 
Reply Create subthread


All articles

Subject Author Date
How to launch several projects at a time

07/07/2003 16:15
Re: How to launch several projects at a time

07/07/2003 19:32
Re: How to launch several projects at a time

07/08/2003 18:33




1

Created with FORUM 2.0.11