Commit fd83ad7f authored by Baptiste Coudurier's avatar Baptiste Coudurier

use short option

Originally committed as revision 13371 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c351cc7f
...@@ -18,9 +18,9 @@ echo "Waiting for feeds to startup..." ...@@ -18,9 +18,9 @@ echo "Waiting for feeds to startup..."
WGET_OPTIONS="--user-agent=NSPlayer -q --proxy=off -e verbose=off -e server_response=off" WGET_OPTIONS="--user-agent=NSPlayer -q --proxy=off -e verbose=off -e server_response=off"
for file in $FILES; do for file in $FILES; do
if [ `expr $file : "a-*"` != 0 ]; then if [ `expr $file : "a-*"` != 0 ]; then
wget $WGET_OPTIONS --output-document=- http://localhost:9999/$file > ff-$file wget $WGET_OPTIONS -O - http://localhost:9999/$file > ff-$file
else else
wget $WGET_OPTIONS --output-document=- http://localhost:9999/$file?date=19700101T000000Z | dd bs=1 count=20000 > ff-$file 2>/dev/null wget $WGET_OPTIONS -O - http://localhost:9999/$file?date=19700101T000000Z | dd bs=1 count=20000 > ff-$file 2>/dev/null
fi fi
MDFILES="$MDFILES ff-$file" MDFILES="$MDFILES ff-$file"
done done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment