Parcourir la source

g.remove: update manual (element names)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@63622 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa il y a 10 ans
Parent
commit
a39bb0e081
1 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 4 4
      general/g.remove/g.remove.html

+ 4 - 4
general/g.remove/g.remove.html

@@ -9,23 +9,23 @@ then nothing is removed, instead the list of selected file names is printed to
 
 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>