17 lines
561 B
Bash
17 lines
561 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
command="./curl_wrapper"
|
||
|
|
||
|
echo
|
||
|
echo "---- journaux.sh ----"
|
||
|
echo
|
||
|
|
||
|
$command xml/libe.rss http://www.liberation.fr/rss.php
|
||
|
$command xml/lefigaro.rss http://www.lefigaro.fr/rss/figaro_une.xml
|
||
|
$command xml/afp.rss http://www.afp.fr/francais/rss/stories.xml
|
||
|
$command xml/lhuma.rss http://www.humanite.fr/backend_une.php3
|
||
|
$command xml/mondediplo.rss http://www.monde-diplomatique.fr/recents.xml
|
||
|
$command xml/nouvelobs.rss http://permanent.nouvelobs.com/rss_permanent.xml
|
||
|
|
||
|
date +"(MAJ %d %b %Y @ %H:%M)">/home/www/website/modules/backends/journaux.date.txt
|