13 lines
590 B
Bash
13 lines
590 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
repdest="/servers/www/web/website/backends"
|
||
|
|
||
|
wget -O $repdest/xml/lalibre.rss http://www.lalibre.be/rss
|
||
|
wget -O $repdest/xml/lalibre_actu.rss http://www.lalibre.be/rss/?section=10
|
||
|
wget -O $repdest/xml/lalibre_culture.rss http://www.lalibre.be/rss/?section=5
|
||
|
wget -O $repdest/xml/lalibre_eco.rss http://www.lalibre.be/rss/?section=3
|
||
|
wget -O $repdest/xml/lalibre_sports.rss http://www.lalibre.be/rss?section=2
|
||
|
wget -O $repdest/xml/lalibre_tendances.rss http://www.lalibre.be/rss?section=12
|
||
|
|
||
|
date +"(MAJ %d %b %Y @ %H:%M)">/servers/www/web/website/modules/backends/lalibre.date.txt
|