|
@@ -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>
|