You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/CommandLineMOVES.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -6,17 +6,17 @@ While the easiest way to interact with MOVES is via its graphical user interface
6
6
7
7
## Set up the command environment
8
8
9
-
The first step to running MOVES from the command line is to set up the shell environment to point to all of the resources it needs to run MOVES. Open the Windows command prompt and navigate to the MOVES directory. By default, the path is `C:\Users\Public\EPA\MOVES\MOVES3.0`. The command to change directories is `cd`:
9
+
The first step to running MOVES from the command line is to set up the shell environment to point to all of the resources it needs to run MOVES. Open the Windows command prompt and navigate to the MOVES directory. By default, the path is `C:\Users\Public\EPA\MOVES\MOVES3.1`. The command to change directories is `cd`:
10
10
11
11
```cmd
12
-
C:\> cd C:\Users\Public\EPA\MOVES\MOVES3.0
12
+
C:\> cd C:\Users\Public\EPA\MOVES\MOVES3.1
13
13
14
14
```
15
15
16
16
Then, enter the name `setenv` to run the setenv.bat script, which will set up your environment for you:
17
17
18
18
```cmd
19
-
C:\Users\Public\EPA\MOVES\MOVES3.0> setenv
19
+
C:\Users\Public\EPA\MOVES\MOVES3.1> setenv
20
20
```
21
21
22
22
This will execute the setenv.bat script without displaying anything to the command window. The script tells the Windows command shell where to find the Java Runtime Environment (JRE) bundled with MOVES and where to find the Ant utility.
@@ -84,7 +84,7 @@ Below is a simple MOVES batch script for running multiple RunSpecs sequentially.
84
84
set RunSpecDir=%CD%
85
85
86
86
:: Set MOVES install location
87
-
set MOVESDir=C:\Users\Public\EPA\MOVES\MOVES3.0
87
+
set MOVESDir=C:\Users\Public\EPA\MOVES\MOVES3.1
88
88
89
89
:: Set up MOVES environment
90
90
cd /d %MOVESDir%
@@ -112,7 +112,7 @@ The script below is like the previous script, except that this script also launc
0 commit comments