Consider the following:

1) Open a terminal session. Your are in some directory that we will call 
"home".
2) Within the "home" directory is a sub directory "dirA".
3) Within "dirA' is a sub directory "dirB".
4) Within "dirA" is a rexx program named "progA".
5) "progA" calls "progB" which resides in "dirB".

Contents of "progA" :
      prog = "dirB/progB"
      call (prog)

Contents of "progB":
      say "In dirB/progB"

 >From the "home" directory issue the command:
      rexx dirA/progA


On Windows "progB" is found and the message is written to the terminal.
On Linux you get an error saying that "dirB/progB" can not be found.


------------------------------------------------------------------------------
_______________________________________________
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

Reply via email to