Explorar el Código

Rename, update HTML files for g.mlist, g.mremove

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@33267 15284696-431f-4ddb-bdfa-cd5b030d7da7
Glynn Clements hace 16 años
padre
commit
53bc256586
Se han modificado 2 ficheros con 11 adiciones y 11 borrados
  1. 9 9
      general/g.mlist/description.html
  2. 2 2
      general/g.mremove/description.html

+ 9 - 9
general/g.mlist/description.html

@@ -1,51 +1,51 @@
 <h2>DESCRIPTION</h2>
 
-<em>g.xlist</em> searches for data files matching a pattern given by wildcards or POSIX Extended Regular Expressions.
+<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.xlist type=all
+  g.mlist type=all
 </pre></div>
 
 List all raster and vector maps:
 <div class="code"><pre>
-  g.xlist type=rast,vect
+  g.mlist 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*"
+  g.mlist 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"
+  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.xlist -r type=rast pattern='^soils'
+  g.mlist -r type=rast pattern='^soils'
 </pre></div>
 
 Print out "tmp" if "tmp" raster map exists:
 <div class="code"><pre>
-  g.xlist -r pattern='^tmp$'
+  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.xlist -r type=vect pattern='^tmp[0-9]$'
+  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.xlist -r type=vect separator=, pattern='^tmp[0-9]$'
+  g.mlist -r type=vect separator=, pattern='^tmp[0-9]$'
 </pre></div>
 
 This may be useful for other programs' parameter input 

+ 2 - 2
general/g.mremove/description.html

@@ -1,6 +1,6 @@
 <h2>DESCRIPTION</h2>
 
-<em>g.xremove</em> removes data files matching a pattern given by wildcards or POSIX Extended Regular Expressions.
+<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.
@@ -9,7 +9,7 @@ as a preview of the files to be deleted.
 
 Delete all raster maps starting with "<tt>tmp_</tt>" in the current mapset:
 <div class="code"><pre>
-  g.xremove -f "tmp_*"
+  g.mremove -f "tmp_*"
 </pre></div>
 
 <h2>SEE ALSO</h2>