File: do_examples.bat

package info (click to toggle)
gmt 6.4.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 107,344 kB
  • sloc: ansic: 272,264; sh: 8,955; fortran: 49; makefile: 44; perl: 32; csh: 9
file content (19 lines) | stat: -rw-r--r-- 352 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
REM
REM DOS batch script to run all GMT examples (DOS versions).
REM

REM Set GMT_END_SHOW to off to disable automatic display of the plots
REM set GMT_END_SHOW=off

echo off
echo Loop over all examples and run each job

for /D %%i in (ex*) do (
    echo Running example %%i
    cd %%i
    call %%i.bat
    cd ..
)

echo Completed all examples
echo ON