[GRASS-SVN] r33267 - in grass/trunk/general: g.mlist g.mremove

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Sep 4 18:34:00 EDT 2008


Author: glynn
Date: 2008-09-04 18:34:00 -0400 (Thu, 04 Sep 2008)
New Revision: 33267

Added:
   grass/trunk/general/g.mlist/g.mlist.html
   grass/trunk/general/g.mremove/g.mremove.html
Removed:
   grass/trunk/general/g.mlist/description.html
   grass/trunk/general/g.mremove/description.html
Log:
Rename, update HTML files for g.mlist, g.mremove


Deleted: grass/trunk/general/g.mlist/description.html
===================================================================
--- grass/trunk/general/g.mlist/description.html	2008-09-04 22:24:02 UTC (rev 33266)
+++ grass/trunk/general/g.mlist/description.html	2008-09-04 22:34:00 UTC (rev 33267)
@@ -1,65 +0,0 @@
-<h2>DESCRIPTION</h2>
-
-<em>g.xlist</em> searches for data files matching a pattern given by wildcards or POSIX Extended Regular Expressions.
-
-<h2>EXAMPLES</h2>
-
-List all available GRASS data base files:
-<div class="code"><pre>
-  g.xlist type=all
-</pre></div>
-
-List all raster and vector maps:
-<div class="code"><pre>
-  g.xlist type=rast,vect
-</pre></div>
-
-<h3>Wildcards:</h3>
-
-List all vector maps starting with letter "r":
-<div class="code"><pre>
-  g.xlist type=vect pattern="r*"
-</pre></div>
-
-List certain raster maps with one variable character/number:
-<div class="code"><pre>
-  g.xlist type=rast pattern="N45E00?.meters"
-</pre></div>
-
-<h3>Regular expressions:</h3>
-
-Print out all soils map with "soils" in their name:
-<div class="code"><pre>
-  g.xlist -r type=rast pattern='^soils'
-</pre></div>
-
-Print out "tmp" if "tmp" raster map exists:
-<div class="code"><pre>
-  g.xlist -r pattern='^tmp$'
-</pre></div>
-
-Print out "tmp0" ..."tmp9" if corresponding vector map exists (each map name linewise):
-<div class="code"><pre>
-  g.xlist -r type=vect pattern='^tmp[0-9]$'
-</pre></div>
-
-Print out "tmp0" ..."tmp9" if corresponding vector map exists (each map name comma separated):
-<div class="code"><pre>
-  g.xlist -r type=vect separator=, pattern='^tmp[0-9]$'
-</pre></div>
-
-This may be useful for other programs' parameter input 
-(e.g. <em><a href="r.series.html">r.series</a></em>).
-
-<h2>SEE ALSO</h2>
-
-<em><a href="g.list.html">g.list</a></em>
-<p>
-<a href="http://en.wikipedia.org/wiki/Regular_expression">Regular expression</a> (from Wikipedia, the free encyclopedia)
-
-<h2>AUTHOR</h2>
-
-Huidae Cho<br>
-grass4u at gmail.com
-
-<p><i>Last changed: $Date: 2008-06-28 04:37:22 -0500 (Sat, 28 Jun 2008) $</i>

Copied: grass/trunk/general/g.mlist/g.mlist.html (from rev 33266, grass/trunk/general/g.mlist/description.html)
===================================================================
--- grass/trunk/general/g.mlist/g.mlist.html	                        (rev 0)
+++ grass/trunk/general/g.mlist/g.mlist.html	2008-09-04 22:34:00 UTC (rev 33267)
@@ -0,0 +1,65 @@
+<h2>DESCRIPTION</h2>
+
+<em>g.mlist</em> searches for data files matching a pattern given by wildcards or POSIX Extended Regular Expressions.
+
+<h2>EXAMPLES</h2>
+
+List all available GRASS data base files:
+<div class="code"><pre>
+  g.mlist type=all
+</pre></div>
+
+List all raster and vector maps:
+<div class="code"><pre>
+  g.mlist type=rast,vect
+</pre></div>
+
+<h3>Wildcards:</h3>
+
+List all vector maps starting with letter "r":
+<div class="code"><pre>
+  g.mlist type=vect pattern="r*"
+</pre></div>
+
+List certain raster maps with one variable character/number:
+<div class="code"><pre>
+  g.mlist type=rast pattern="N45E00?.meters"
+</pre></div>
+
+<h3>Regular expressions:</h3>
+
+Print out all soils map with "soils" in their name:
+<div class="code"><pre>
+  g.mlist -r type=rast pattern='^soils'
+</pre></div>
+
+Print out "tmp" if "tmp" raster map exists:
+<div class="code"><pre>
+  g.mlist -r pattern='^tmp$'
+</pre></div>
+
+Print out "tmp0" ..."tmp9" if corresponding vector map exists (each map name linewise):
+<div class="code"><pre>
+  g.mlist -r type=vect pattern='^tmp[0-9]$'
+</pre></div>
+
+Print out "tmp0" ..."tmp9" if corresponding vector map exists (each map name comma separated):
+<div class="code"><pre>
+  g.mlist -r type=vect separator=, pattern='^tmp[0-9]$'
+</pre></div>
+
+This may be useful for other programs' parameter input 
+(e.g. <em><a href="r.series.html">r.series</a></em>).
+
+<h2>SEE ALSO</h2>
+
+<em><a href="g.list.html">g.list</a></em>
+<p>
+<a href="http://en.wikipedia.org/wiki/Regular_expression">Regular expression</a> (from Wikipedia, the free encyclopedia)
+
+<h2>AUTHOR</h2>
+
+Huidae Cho<br>
+grass4u at gmail.com
+
+<p><i>Last changed: $Date: 2008-06-28 04:37:22 -0500 (Sat, 28 Jun 2008) $</i>

Deleted: grass/trunk/general/g.mremove/description.html
===================================================================
--- grass/trunk/general/g.mremove/description.html	2008-09-04 22:24:02 UTC (rev 33266)
+++ grass/trunk/general/g.mremove/description.html	2008-09-04 22:34:00 UTC (rev 33267)
@@ -1,26 +0,0 @@
-<h2>DESCRIPTION</h2>
-
-<em>g.xremove</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>
-  g.xremove -f "tmp_*"
-</pre></div>
-
-<h2>SEE ALSO</h2>
-
-<em><a HREF="g.remove.html">g.remove</a></em>
-<p>
-<a href="http://en.wikipedia.org/wiki/Regular_expression">Regular expression</a> (from Wikipedia, the free encyclopedia)
-
-<h2>AUTHOR</h2>
-
-Huidae Cho<br>
-grass4u at gmail.com
-
-<p><i>Last changed: $Date: 2008-06-28 03:23:07 -0500 (Sat, 28 Jun 2008) $</i>

Copied: grass/trunk/general/g.mremove/g.mremove.html (from rev 33266, grass/trunk/general/g.mremove/description.html)
===================================================================
--- grass/trunk/general/g.mremove/g.mremove.html	                        (rev 0)
+++ grass/trunk/general/g.mremove/g.mremove.html	2008-09-04 22:34:00 UTC (rev 33267)
@@ -0,0 +1,26 @@
+<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>
+  g.mremove -f "tmp_*"
+</pre></div>
+
+<h2>SEE ALSO</h2>
+
+<em><a HREF="g.remove.html">g.remove</a></em>
+<p>
+<a href="http://en.wikipedia.org/wiki/Regular_expression">Regular expression</a> (from Wikipedia, the free encyclopedia)
+
+<h2>AUTHOR</h2>
+
+Huidae Cho<br>
+grass4u at gmail.com
+
+<p><i>Last changed: $Date: 2008-06-28 03:23:07 -0500 (Sat, 28 Jun 2008) $</i>



More information about the grass-commit mailing list