Can anyone please advise me of the best way of doing this task, I don’t want the script written for me (I like learning) I just need a pointer in which would be the best way to approach the problem,
I download xml files for each of the products in my catalog they are titled (ProdId.xml)
I get a list of the product id’s from my SQL Server 2008 table products. And currently put them into Excel and put a wget statement before each file with the full path and username and password for my source of the files.
E.g.
wget website/xmlfiles/prodid.xml – username – password
And I do this for each and every file.
I would like to automate the process so daily extract all the product id’s check to see if the file already exists then if not go collect from the website.
How can I do it?