13 lines
732 B
Bash
13 lines
732 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
repdest="/var/www/website/webnews/modules/backends"
|
||
|
|
||
|
wget -O $repdest/html/raslfront_nat.html http://collectifs.raslfront.info/rubrique.php3?id_rubrique=9
|
||
|
wget -O $repdest/html/raslfront_idf.html http://collectifs.raslfront.info/rubrique.php3?id_rubrique=7
|
||
|
wget -O $repdest/html/raslfront_ne.html http://collectifs.raslfront.info/rubrique.php3?id_rubrique=1
|
||
|
wget -O $repdest/html/raslfront_no.html http://collectifs.raslfront.info/rubrique.php3?id_rubrique=3
|
||
|
wget -O $repdest/html/raslfront_se.html http://collectifs.raslfront.info/rubrique.php3?id_rubrique=5
|
||
|
wget -O $repdest/html/raslfront_so.html http://collectifs.raslfront.info/rubrique.php3?id_rubrique=6
|
||
|
|
||
|
date +"(MAJ %d %b %Y @ %H:%M)">$repdest/raslfront.date.txt
|