[GRASS-SVN] r44547 - grass/branches/develbranch_6/scripts/r.in.wms
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Dec 6 15:10:59 EST 2010
Author: martinl
Date: 2010-12-06 12:10:59 -0800 (Mon, 06 Dec 2010)
New Revision: 44547
Modified:
grass/branches/develbranch_6/scripts/r.in.wms/wms.download
Log:
r.in.wms: download data by wget in quiet mode
Modified: grass/branches/develbranch_6/scripts/r.in.wms/wms.download
===================================================================
--- grass/branches/develbranch_6/scripts/r.in.wms/wms.download 2010-12-06 19:20:32 UTC (rev 44546)
+++ grass/branches/develbranch_6/scripts/r.in.wms/wms.download 2010-12-06 20:10:59 UTC (rev 44547)
@@ -161,7 +161,7 @@
if [ "$POST_DATA_OK" -eq 1 ] ; then
#download the File from the Server
if [ "$USE_WGET" ] ; then
- wget ${WGET_OPTIONS} --post-data="${STRING}" "${SERVER}" -O "${OUTPUT_FILE}"
+ wget --quiet ${WGET_OPTIONS} --post-data="${STRING}" "${SERVER}" -O "${OUTPUT_FILE}"
else
curl ${CURL_OPTIONS} -o "${OUTPUT_FILE}" -d "${STRING}" "${SERVER}"
fi
More information about the grass-commit
mailing list