g.mremove.html 760 B

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