Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

do_examples.bat 352 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  1. REM
  2. REM DOS batch script to run all GMT examples (DOS versions).
  3. REM
  4. REM Set GMT_END_SHOW to off to disable automatic display of the plots
  5. REM set GMT_END_SHOW=off
  6. echo off
  7. echo Loop over all examples and run each job
  8. for /D %%i in (ex*) do (
  9. echo Running example %%i
  10. cd %%i
  11. call %%i.bat
  12. cd ..
  13. )
  14. echo Completed all examples
  15. echo ON
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...