L
luc
With the following command u can download a webpage and put it in ur c:
print `get http://charts.iex.nl/charts/D0-I230482-P-S50-Lnl.png >
c:/beurs/test/agfagevaert.png`;
(note: the single quotes here are a single backquotes).
This is a webpage that shows the evolution during the day of a share on the
amsterdam stock market.
At 17.00 this program is manually run.
The problem is that I would like to download this page everyday. But if I
use the above code it will overwrite the file. How does this code need to be
changed in order to have 5 files(of the 5 weekdays) at the end of the week.
print `get http://charts.iex.nl/charts/D0-I230482-P-S50-Lnl.png >
c:/beurs/test/agfagevaert.png`;
(note: the single quotes here are a single backquotes).
This is a webpage that shows the evolution during the day of a share on the
amsterdam stock market.
At 17.00 this program is manually run.
The problem is that I would like to download this page everyday. But if I
use the above code it will overwrite the file. How does this code need to be
changed in order to have 5 files(of the 5 weekdays) at the end of the week.