exec

Runs an application.

exec <command line> [<show> [<wait>]]

Remarks

Runs an application specified by <command line>.

here show command: 
hide
minimize
maximize
show ;default parameters when no show command specified. 
When a user specifies the 1 at the <wait> argument, Tera Term waits to finish the launched application. The exit code of the application stores the `result' system variable. (version 4.63 or later)

Example

; Run "Notepad".
exec 'notepad readme.txt'

; Run "Notepad" and maximize the application.
exec 'notepad readme.txt' 'maximize'
; Launch a batch file.
tmp='cmd /c c:\upload.bat '
strconcat tmp username1 
strconcat tmp ' '
strconcat tmp userpass1 
strconcat tmp ' '
strconcat tmp address
messagebox tmp 'exec'
exec tmp