We have found it useful to "pre-pend" the control stream
to the output file and also add the run start time and end
time to this file by modifying the default run scripts, nmfe5.bat
(for DOS) or nmfe5 (for Linux/UNIX).
DOS modifications to nmfe5.bat for Windows 2000 and Windows
NT (for Windows 95, do not use the date and time lines):
original beginning of nmfe5.bat script:
@echo off
modified beginning of nmfe5.bat script:
@echo off
echo Start Time: >%2
date /t >>%2
time /t >>%2
original nmfe5.bat script segment starting with:
nonmem.exe
copy output %2
modified nmfe5.bat script segement starting with:
nonmem.exe
copy %2 +%1 +output %2
echo Stop Time: >>%2
date /t >>%2
time /t >>%2
UNIX and Linux script modification: