Ich fall gleich mit der Tür ins Haus. Gegeben sei - auch für euch zum ausprobieren - folgendes Shellscript(-Fragment):
Code: Alles auswählen
wget https://www.postbank.de/dienste/fondsundboerse/aktien_detail.html?ID_NOTATION=172219595 -O/tmp/innogy --no-check-certificate --quiet
echo -n '\t'`grep 'AKTUELL: [0-9]*,[0-9]*' /tmp/innogy -o| grep [0-9]*,[0-9]* -o` € >> depot.csv
wget https://www.postbank.de/dienste/fondsundboerse/aktien_detail.html?ID_NOTATION=180039 -O/tmp/commerz --no-check-certificate --quiet
echo -n '\t'`grep 'AKTUELL: [0-9]*,[0-9]*' /tmp/commerz -o| grep [0-9]*,[0-9]* -o` € >> depot.csv
wget https://www.postbank.de/dienste/fondsundboerse/aktien_detail.html?ID_NOTATION=3231118 -O/tmp/grund --no-check-certificate --quiet
echo -n '\t'`grep 'AKTUELL: [0-9]*,[0-9]*' /tmp/grund -o| grep [0-9]*,[0-9]* -o` € >> depot.csv
Jemand hier ne Idee?
TIA!
Ulrich