[GRASS-SVN] r63622 - grass/trunk/general/g.remove

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Dec 19 12:06:05 PST 2014


Author: martinl
Date: 2014-12-19 12:06:05 -0800 (Fri, 19 Dec 2014)
New Revision: 63622

Modified:
   grass/trunk/general/g.remove/g.remove.html
Log:
g.remove: update manual (element names)


Modified: grass/trunk/general/g.remove/g.remove.html
===================================================================
--- grass/trunk/general/g.remove/g.remove.html	2014-12-19 19:52:53 UTC (rev 63621)
+++ grass/trunk/general/g.remove/g.remove.html	2014-12-19 20:06:05 UTC (rev 63622)
@@ -9,23 +9,23 @@
 
 Delete <tt>map1</tt> and <tt>map2</tt> raster maps in the current mapset:
 <div class="code"><pre>
-g.remove -f type=rast name=tmp1,tmp2
+g.remove -f type=raster name=tmp1,tmp2
 </pre></div>
 
 Delete all raster and vector maps starting with "<tt>tmp_</tt>" in the current
 mapset:
 <div class="code"><pre>
 # show matching raster and vector maps but do not delete yet (as verification)
-g.remove type=rast,vect pattern="tmp_*"
+g.remove type=raster,vector pattern="tmp_*"
 
 # actually delete the matching raster and vector maps
-g.remove -f type=rast,vect pattern="tmp_*"
+g.remove -f type=raster,vector pattern="tmp_*"
 </pre></div>
 
 Delete all vector maps starting with "<tt>stream_</tt>" in the current mapset,
 but exclude those ending with "<tt>_final</tt>":
 <div class="code"><pre>
-g.remove -f type=vect pattern="stream_*" exclude="*_final"
+g.remove -f type=vector pattern="stream_*" exclude="*_final"
 </pre></div>
 
 <h2>AUTHOR</h2>



More information about the grass-commit mailing list