Home | Docs | Issue Tracker | FAQ | Download
MapServer logo

Table Of Contents

Previous topic

tile4ms

Next topic

File Management

This Page

Quick search

Enter search terms or a module, class or function name.

Batch Scripting

If you need to run the utilities on multiple files/folders, here are some commands that will help you:

Windows

type the following at the command prompt:

for %f in (*.shp) do shptree %f

or to run recursively (throughout all subfolders):

for /R %f in (*.shp) do shptree %f

Linux

find /path/to/data -name "*.shp" -exec shptree {} \;