123456789101112131415161718192021222324252627282930313233 |
- <h2>DESCRIPTION</h2>
- <em>g.mremove</em> removes data files matching a pattern given by wildcards or POSIX Extended Regular Expressions.
- If the <b>-f</b> force flag is not given then nothing is removed, instead
- the list of selected file names is printed to <tt>stdout</tt>
- as a preview of the files to be deleted.
- <h2>EXAMPLE</h2>
- Delete all raster maps starting with "<tt>tmp_</tt>" in the current mapset:
- <div class="code"><pre>
- # show matching raster maps but do not delete yet (as verification)
- g.mremove rast="tmp_*"
- # actually delete the matching raster maps
- g.mremove -f rast="tmp_*"
- </pre></div>
- <h2>SEE ALSO</h2>
- <em>
- <a href="g.remove.html">g.remove</a>
- </em>
- <h2>AUTHOR</h2>
- Huidae Cho<br>
- grass4u@gmail.com
- <p>
- <i>Last changed: $Date$</i>
|