Call another CMD by value

[Autolink] Menu

 
/* code sequence to call another CMD by value                         */

  cmdPath = "E:\DEVELOP\REXX"

  iLine = 'call "' || cmdPath || '\MYFUNC"'
  interpret iLine

/* Note:                                                              */
/*  call cmdPath || "\MYFUNC"                                         */
/* won't work                                                         */


[Back: Call another CMD]
[Next: Call by value]