Skip to main content

more options


Tips and Tricks

In the earlier multiple node example, the main batch script called a setup script which creates a subfolder on each node and copies the specified files to each node:

REM Create a working subdirectory on each node
T:
mkdir your_userid
cd your_userid
del /Q /S T:\your_userid\*.*1
        
REM Copy the executable (and data files, if necessary) to each node
copy \\tc.cornell.edu\tc\users\your_userid\lab\wavesend.exe T:\your_userid

There is a faster method, by using mcp.

In the earlier multiple node example, the main batch script called a setup script which creates a subfolder on each node and copies the specified files to each node:

REM Create a working subdirectory on each node
T:
mkdir your_userid
cd your_userid
del /Q /S T:\your_userid\*.*1
        
REM Copy the executable (and data files, if necessary) to each node
copy \\tc.cornell.edu\tc\users\your_userid\lab\wavesend.exe T:\your_userid

There is a faster method, by using mcp.