19 lines
634 B
Bash
19 lines
634 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
command="./curl_wrapper"
|
||
|
|
||
|
echo
|
||
|
echo "---- videos.sh ----"
|
||
|
echo
|
||
|
|
||
|
$command xml/youtube_recently_added.rss http://youtube.com/rss/global/recently_added.rss
|
||
|
$command xml/youtube_recently_featured.rss http://youtube.com/rss/global/recently_featured.rss
|
||
|
$command xml/youtube_top_favorites.rss http://youtube.com/rss/global/top_favorites.rss
|
||
|
$command xml/youtube_top_rated.rss http://youtube.com/rss/global/top_rated.rss
|
||
|
|
||
|
$command xml/dailymotion.rss http://www.dailymotion.com/rss
|
||
|
|
||
|
$command xml/metacafe.rss http://www.metacafe.com/rss/new_videos.rss
|
||
|
|
||
|
date +"(MAJ %d %b %Y @ %H:%M)">/www/website/modules/backends/videos.date.txt
|