Personal tools
You are here: Home Documentation References Batch Processing Syntax

2. Batch Processing Syntax

Document Actions
Up one level

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 {} \; 
by Jeff McKenna last modified 2006-05-15 12:21
Contributors: Steve Lime, Jeff McKenna

Powered by Plone