Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For example, if you put this line into your CONFIG.SYS file:

...

     SET X_RUN=LANG:ENG

you have indicated that unless specified on a command line (because it has a higher precedence), the LANG parameter should be English.

Similarly:

...

     SET X_RUN=PRTR:

...

LPT3 LANG:FRA

or, for Linux:

     X_RUN="PRTR:

...

lpt3 LANG:FRA";

...

 export X_RUN 

sets up all X_RUN commands to have printer LPT3 and to use French (unless overridden by specific command line parameters).

Note
Note: A colon (":") is used instead of the equal sign ("="). The parameter is specified as PRTR:LPT3 rather than PRTR=LPT3.

You must use the ":" format when using the SET command.

...