You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In REXX, any unrecognized command is automatically passed back to the hosting environment for execution. So, if you run a REXX program from the command line, any unrecognized REXX statements are passed back to the command line interpreter for execution. If you run a REXX program from inside your text editor, then unrecognized statements are passed back to the editor to execute. This is a very powerful scheme that allows REXX to be used as a scripting language for just about any tool that has some set of text-based commands.
Even more powerful when you consider that typos in your REXX program inadvertently become other programs that are suddenly invoked on your behalf.
In BS, it'd be nice if there were a way to cause commands to be sent back to the hosting environment (your ksh shell, your editor, et cetera), just like REXX. Better still if it also did this without warning and managed to cover up for trivial user errors in the process.
The text was updated successfully, but these errors were encountered:
In REXX, any unrecognized command is automatically passed back to the hosting environment for execution. So, if you run a REXX program from the command line, any unrecognized REXX statements are passed back to the command line interpreter for execution. If you run a REXX program from inside your text editor, then unrecognized statements are passed back to the editor to execute. This is a very powerful scheme that allows REXX to be used as a scripting language for just about any tool that has some set of text-based commands.
Even more powerful when you consider that typos in your REXX program inadvertently become other programs that are suddenly invoked on your behalf.
In BS, it'd be nice if there were a way to cause commands to be sent back to the hosting environment (your ksh shell, your editor, et cetera), just like REXX. Better still if it also did this without warning and managed to cover up for trivial user errors in the process.
The text was updated successfully, but these errors were encountered: