cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

JMP Wish List

We want to hear your ideas for improving JMP. Share them here.
Choose Language Hide Translation Bar

start jmp.exe, pass it a script and input variables all through the cmd line

start jmp.exe, pass it a script and input variables all through the cmd line

 

JMP does not have a nice direct cmd line input ability to where I could launch jmp.exe via a script.   The request is for JMP to have this ability.

 

Example concept: 

 

jmp.exe  -s:somescript.jsl  test=inputvariable1 inputPath=inputvariable2 matchPath=inputvariable3

 

where test, inputPath and matchPath are variables used inside the JMP script. 

 

------------ 

As is now, my workaround is via this cmdLineJmp.cmd script

 

 

rem test options:
rem 1=precision, 2=matching to baseline file 3=gauge precision 4= gauge matching
set test=%1
set inputPath=%2
set matchPath=%3

d:
cd D:\Data\JMP_Scripts
echo test=%test%; > scriptCmdInput.jsl
echo inputPath=%inputPath%; >> scriptCmdInput.jsl
echo matchPath=%matchPath%; >> scriptCmdInput.jsl
echo include("script-2_2.30.22_code.jsl", Names Default to Here(1)); >> scriptCmdInput.jsl
jmp.exe "scriptCmdInput.jsl"

 

 

1 Comment
Ryan_Gilmore
Community Manager
Status changed to: Archived
We are archiving this request. If this is still important please comment with additional details and we will reopen. Thank you!