[GRASS-SVN] r34433 - grass/trunk/general/g.mlist
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Nov 21 15:47:10 EST 2008
Author: neteler
Date: 2008-11-21 15:47:10 -0500 (Fri, 21 Nov 2008)
New Revision: 34433
Modified:
grass/trunk/general/g.mlist/g.mlist.html
Log:
explain exclude parameter
Modified: grass/trunk/general/g.mlist/g.mlist.html
===================================================================
--- grass/trunk/general/g.mlist/g.mlist.html 2008-11-21 20:45:26 UTC (rev 34432)
+++ grass/trunk/general/g.mlist/g.mlist.html 2008-11-21 20:47:10 UTC (rev 34433)
@@ -26,6 +26,27 @@
g.mlist type=rast pattern="N45E00?.meters"
</pre></div>
+Use of <em>exclude</em> parameter:
+<div class="code"><pre>
+# without exclude:
+ g.mlist rast pat="r*" mapset=PERMANENT
+ railroads
+ roads
+ rstrct.areas
+ rushmore
+
+# exclude only complete word(s):
+ g.mlist rast pat="r*" exclude=roads mapset=PERMANENT
+ railroads
+ rstrct.areas
+ rushmore
+
+# exclude with wildcard:
+ g.mlist rast pat="r*" exclude="*roads*" mapset=PERMANENT
+ rstrct.areas
+ rushmore
+</pre></div>
+
<h3>Regular expressions:</h3>
Print out all soils map with "soils" in their name:
More information about the grass-commit
mailing list