SlideShare a Scribd company logo
1 of 17
Writing command macro in
Stratus COBOL
www.srinimf.com
Command macro
A command macro is a text file that contains one or more commands and/or
command macro statements and that has a name ending with the suffix .cm. You
invoke a macro by entering its name. The operating system then sequentially
executes the commands and macro statements in the file
Command line
A command line is a set of one or more command strings, separated by
semicolons. A command string is a command name and any of the command's
arguments you select. If you want to issue a command with the same name as the
command macro, include the .pm suffix in the command name. Otherwise, the
command macro will be called recursively.
Macro line
A macro line can be one of the following:
a command macro statement
a comment line
a parameter declaration.
Comment Line
A comment line is either a line that begins with an ampersand (&) followed by a
space or a line that consists only of an ampersand. The characters that follow the
ampersand on the line, if any, are taken to be the comment. The command
processor ignores all comment lines.
Ex:
& This command macro is named set_cursor.cm.
&
Command macro statement
&echo
Controls whether command lines, input lines, and macro statements are written
to the default output port.
Parameter
The macro can take parameters. A parameter in a command macro is a named
variable that is declared within the parameter declaration section of a command
macro. A parameter receives its initial value from an argument specified in the
command string that calls the macro or from a default value specified within the
macro.
The macro processor stores parameters as character strings. When the value of
a parameter is converted, it is treated as numeric if it can be converted to a
number; otherwise the value is treated as a string.
3 Parameter Types
There are three types of parameters: positional, optional, and switch parameters.
These correspond to the three types of command arguments described earlier in
this section.
A positional parameter is a parameter that the macro processor identifies in a
command line by the position of its value (rather than by a keyword).
An optional parameter is a parameter that the macro processor identifies in a
command line by a keyword that begins with a hyphen and is followed by a value.
You can specify allowed values (which the user can then cycle through in the
display form). You can also specify a default value.
A switch parameter is a parameter that has only two possible values: yes or no.
It is used like a command switch argument.
Parameter Type
date_time
A date/time string
Parameter Declaration
A parameter declaration is a line in a command macro that appears between the
macro statements &begin_parameters and &end_parameters. It must
contain the name of a parameter and it can contain a parameter descriptor
(described later in this section). The form of a parameter declaration follows.
parameter_name [parameter_descriptor]
That portion of a macro from the &begin_parameters statement to the
&end_parameters statement is called the parameter declaration section. The
parameter declaration section must begin on the first line of the macro that is not
a comment line.
Parameter Label
A label is an optional element of a parameter descriptor. Its purpose is to provide
a descriptive term that will be useful to the user of a macro. It has the following
form:
label:
Contd...
The label, if specified, must be the first component of the parameter descriptor. The colon following
label must be the only colon in the descriptor.
Depending on the type of the parameter, the label appears in the display form, the command line form,
both of these, or neither of these. The information provided by label is used differently depending on
the type of the parameter.
For a positional parameter, it labels the parameter's field in the display form. It also provides a label
in the command line form when you give the command macro with the -usage option.
For an optional parameter, it labels the parameter's field in the command line form only.
For a switch parameter, there is no purpose for specifying a label, since it is used in neither the
display form nor the command line form.
Input Line
To supply input to a program in a macro, you must include the following
elements in the macro in the order shown:
the &attach_input macro statement, which allows the program to accept
input directly from the macro file
the command to invoke the program
input to the program (probably including a request such as quit to exit from
the program)
the &detach_input macro statement, which prevents any further program
input from coming from the macro
Command Function
A command function is a self-contained function that you can use as an
argument in a command line. Before executing the rest of the command line in
which a command function appears, the command processor evaluates the
command function and replaces it with a value. The value returned becomes part
of the command line. For example, to display the current time, you could enter
the following command line with the command function (time):
display_line (time)
The output for the preceding example could be 13:10:59, which specifies the
current hour (13, in 24-hour format), minutes (10), and seconds (59).
Library Path
The operating system maintains a set of library paths for each process. Library
paths specify where the operating system searches for external commands,
include files, object files, or message files. The libraries are referred to as the
command, include, object, and message libraries.
Library paths fall into two categories. Default library paths are set for an entire
module. All processes automatically include all default library paths in their
library search paths. These library paths are generally set using the
add_default_library_path command in module_start_up.cm. Typically
these are library paths that all or almost all processes on the system will need
(such as >system>command_library).
References
Command macros in Stratus
Example Command Macros
Thankyou
www.srinimf.com

More Related Content

What's hot

Lec 04 intro assembly
Lec 04 intro assemblyLec 04 intro assembly
Lec 04 intro assembly
Abdul Khan
 
Track 2 session 4 db2 for z os optimizer- what’s new in db2 11 and exploiti...
Track 2 session 4   db2 for z os optimizer- what’s new in db2 11 and exploiti...Track 2 session 4   db2 for z os optimizer- what’s new in db2 11 and exploiti...
Track 2 session 4 db2 for z os optimizer- what’s new in db2 11 and exploiti...
IBMSystemzEvents
 
Mainframe refresher-part-1
Mainframe refresher-part-1Mainframe refresher-part-1
Mainframe refresher-part-1
vishwas17
 
Mainframe jcl exec and dd statements part - 3
Mainframe jcl exec and dd statements part - 3Mainframe jcl exec and dd statements part - 3
Mainframe jcl exec and dd statements part - 3
janaki ram
 

What's hot (20)

Assembler1
Assembler1Assembler1
Assembler1
 
Compilers
CompilersCompilers
Compilers
 
Lec 04 intro assembly
Lec 04 intro assemblyLec 04 intro assembly
Lec 04 intro assembly
 
Spr ch-02
Spr ch-02Spr ch-02
Spr ch-02
 
Sp chap2
Sp chap2Sp chap2
Sp chap2
 
Sp2 4
Sp2 4Sp2 4
Sp2 4
 
Chapter 2
Chapter 2Chapter 2
Chapter 2
 
JCL FOR FRESHERS
JCL FOR FRESHERSJCL FOR FRESHERS
JCL FOR FRESHERS
 
First pass of assembler
First pass of assemblerFirst pass of assembler
First pass of assembler
 
Examinable Question and answer system programming
Examinable Question and answer system programmingExaminable Question and answer system programming
Examinable Question and answer system programming
 
Assemblers
AssemblersAssemblers
Assemblers
 
Track 2 session 4 db2 for z os optimizer- what’s new in db2 11 and exploiti...
Track 2 session 4   db2 for z os optimizer- what’s new in db2 11 and exploiti...Track 2 session 4   db2 for z os optimizer- what’s new in db2 11 and exploiti...
Track 2 session 4 db2 for z os optimizer- what’s new in db2 11 and exploiti...
 
Assembler
AssemblerAssembler
Assembler
 
Mainframe refresher-part-1
Mainframe refresher-part-1Mainframe refresher-part-1
Mainframe refresher-part-1
 
Mainframe jcl exec and dd statements part - 3
Mainframe jcl exec and dd statements part - 3Mainframe jcl exec and dd statements part - 3
Mainframe jcl exec and dd statements part - 3
 
Assembler
AssemblerAssembler
Assembler
 
Assembler
AssemblerAssembler
Assembler
 
Design of a two pass assembler
Design of a two pass assemblerDesign of a two pass assembler
Design of a two pass assembler
 
C programming
C programmingC programming
C programming
 
Advanced procedures in assembly language Full chapter ppt
Advanced procedures in assembly language Full chapter pptAdvanced procedures in assembly language Full chapter ppt
Advanced procedures in assembly language Full chapter ppt
 

Viewers also liked (11)

Rexx
RexxRexx
Rexx
 
Rexx Shih
Rexx ShihRexx Shih
Rexx Shih
 
Sort presentation
Sort presentationSort presentation
Sort presentation
 
Macro teradata
Macro teradataMacro teradata
Macro teradata
 
PL/SQL Interview Questions
PL/SQL Interview QuestionsPL/SQL Interview Questions
PL/SQL Interview Questions
 
DB2-SQL Part-2
DB2-SQL Part-2DB2-SQL Part-2
DB2-SQL Part-2
 
Oracle PLSQL Step By Step Guide
Oracle PLSQL Step By Step GuideOracle PLSQL Step By Step Guide
Oracle PLSQL Step By Step Guide
 
Assembler
AssemblerAssembler
Assembler
 
IMS DC Self Study Complete Tutorial
IMS DC Self Study Complete TutorialIMS DC Self Study Complete Tutorial
IMS DC Self Study Complete Tutorial
 
100 sql queries
100 sql queries100 sql queries
100 sql queries
 
Assembly Language Basics
Assembly Language BasicsAssembly Language Basics
Assembly Language Basics
 

Similar to Writing command macro in stratus cobol

Task Perform addition subtraction division and multiplic.pdf
Task Perform addition subtraction division and multiplic.pdfTask Perform addition subtraction division and multiplic.pdf
Task Perform addition subtraction division and multiplic.pdf
acsmadurai
 
Sas macros part 4.1
Sas macros part 4.1Sas macros part 4.1
Sas macros part 4.1
venkatam
 

Similar to Writing command macro in stratus cobol (20)

Module 5.pdf
Module 5.pdfModule 5.pdf
Module 5.pdf
 
Task Perform addition subtraction division and multiplic.pdf
Task Perform addition subtraction division and multiplic.pdfTask Perform addition subtraction division and multiplic.pdf
Task Perform addition subtraction division and multiplic.pdf
 
C language 3
C language 3C language 3
C language 3
 
Class notes(week 5) on command line arguments
Class notes(week 5) on command line argumentsClass notes(week 5) on command line arguments
Class notes(week 5) on command line arguments
 
Class notes(week 5) on command line arguments
Class notes(week 5) on command line argumentsClass notes(week 5) on command line arguments
Class notes(week 5) on command line arguments
 
Functions in C++
Functions in C++Functions in C++
Functions in C++
 
Subprogramms
SubprogrammsSubprogramms
Subprogramms
 
Function & procedure
Function & procedureFunction & procedure
Function & procedure
 
System software - macro expansion,nested macro calls
System software - macro expansion,nested macro callsSystem software - macro expansion,nested macro calls
System software - macro expansion,nested macro calls
 
Unit 2
Unit 2Unit 2
Unit 2
 
11i&r12 difference
11i&r12 difference11i&r12 difference
11i&r12 difference
 
Functions and modular programming.pptx
Functions and modular programming.pptxFunctions and modular programming.pptx
Functions and modular programming.pptx
 
Functions in C++
Functions in C++Functions in C++
Functions in C++
 
Sas macros part 4.1
Sas macros part 4.1Sas macros part 4.1
Sas macros part 4.1
 
Programming style guideline very good
Programming style guideline very goodProgramming style guideline very good
Programming style guideline very good
 
Introduction to c programming
Introduction to c programmingIntroduction to c programming
Introduction to c programming
 
Preprocessors
PreprocessorsPreprocessors
Preprocessors
 
Matlab Programming Tips Part 1
Matlab Programming Tips Part 1Matlab Programming Tips Part 1
Matlab Programming Tips Part 1
 
Cpp functions
Cpp functionsCpp functions
Cpp functions
 
Vb (1)
Vb (1)Vb (1)
Vb (1)
 

More from Srinimf-Slides

More from Srinimf-Slides (20)

software-life-cycle.pptx
software-life-cycle.pptxsoftware-life-cycle.pptx
software-life-cycle.pptx
 
Python Tutorial Questions part-1
Python Tutorial Questions part-1Python Tutorial Questions part-1
Python Tutorial Questions part-1
 
Cics testing and debugging-session 7
Cics testing and debugging-session 7Cics testing and debugging-session 7
Cics testing and debugging-session 7
 
CICS error and exception handling-recovery and restart-session 6
CICS error and exception handling-recovery and restart-session 6CICS error and exception handling-recovery and restart-session 6
CICS error and exception handling-recovery and restart-session 6
 
Cics program, interval and task control commands-session 5
Cics program, interval and task control commands-session 5Cics program, interval and task control commands-session 5
Cics program, interval and task control commands-session 5
 
Cics data access-session 4
Cics data access-session 4Cics data access-session 4
Cics data access-session 4
 
CICS basic mapping support - session 3
CICS basic mapping support - session 3CICS basic mapping support - session 3
CICS basic mapping support - session 3
 
Cics application programming - session 2
Cics   application programming - session 2Cics   application programming - session 2
Cics application programming - session 2
 
CICS basics overview session-1
CICS basics overview session-1CICS basics overview session-1
CICS basics overview session-1
 
The best Teradata RDBMS introduction a quick refresher
The best Teradata RDBMS introduction a quick refresherThe best Teradata RDBMS introduction a quick refresher
The best Teradata RDBMS introduction a quick refresher
 
The best ETL questions in a nut shell
The best ETL questions in a nut shellThe best ETL questions in a nut shell
The best ETL questions in a nut shell
 
How To Master PACBASE For Mainframe In Only Seven Days
How To Master PACBASE For Mainframe In Only Seven DaysHow To Master PACBASE For Mainframe In Only Seven Days
How To Master PACBASE For Mainframe In Only Seven Days
 
DB2 SQL-Part-1
DB2 SQL-Part-1DB2 SQL-Part-1
DB2 SQL-Part-1
 
Teradata - Utilities
Teradata - UtilitiesTeradata - Utilities
Teradata - Utilities
 
Hirarchical vs RDBMS
Hirarchical vs RDBMSHirarchical vs RDBMS
Hirarchical vs RDBMS
 
20 DFSORT Tricks For Zos Users - Interview Questions
20 DFSORT Tricks For Zos Users - Interview Questions20 DFSORT Tricks For Zos Users - Interview Questions
20 DFSORT Tricks For Zos Users - Interview Questions
 
SRINIMF - An Overview
SRINIMF - An OverviewSRINIMF - An Overview
SRINIMF - An Overview
 
Cross Cultural Sensitivity
Cross Cultural SensitivityCross Cultural Sensitivity
Cross Cultural Sensitivity
 
Db2 v10.5 An Overview
Db2 v10.5 An OverviewDb2 v10.5 An Overview
Db2 v10.5 An Overview
 
Learn VBScript – Part 1 of 4
Learn VBScript – Part 1 of 4Learn VBScript – Part 1 of 4
Learn VBScript – Part 1 of 4
 

Recently uploaded

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Recently uploaded (20)

Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 

Writing command macro in stratus cobol

  • 1. Writing command macro in Stratus COBOL www.srinimf.com
  • 2. Command macro A command macro is a text file that contains one or more commands and/or command macro statements and that has a name ending with the suffix .cm. You invoke a macro by entering its name. The operating system then sequentially executes the commands and macro statements in the file
  • 3. Command line A command line is a set of one or more command strings, separated by semicolons. A command string is a command name and any of the command's arguments you select. If you want to issue a command with the same name as the command macro, include the .pm suffix in the command name. Otherwise, the command macro will be called recursively.
  • 4. Macro line A macro line can be one of the following: a command macro statement a comment line a parameter declaration.
  • 5. Comment Line A comment line is either a line that begins with an ampersand (&) followed by a space or a line that consists only of an ampersand. The characters that follow the ampersand on the line, if any, are taken to be the comment. The command processor ignores all comment lines. Ex: & This command macro is named set_cursor.cm. &
  • 6. Command macro statement &echo Controls whether command lines, input lines, and macro statements are written to the default output port.
  • 7. Parameter The macro can take parameters. A parameter in a command macro is a named variable that is declared within the parameter declaration section of a command macro. A parameter receives its initial value from an argument specified in the command string that calls the macro or from a default value specified within the macro. The macro processor stores parameters as character strings. When the value of a parameter is converted, it is treated as numeric if it can be converted to a number; otherwise the value is treated as a string.
  • 8. 3 Parameter Types There are three types of parameters: positional, optional, and switch parameters. These correspond to the three types of command arguments described earlier in this section. A positional parameter is a parameter that the macro processor identifies in a command line by the position of its value (rather than by a keyword). An optional parameter is a parameter that the macro processor identifies in a command line by a keyword that begins with a hyphen and is followed by a value. You can specify allowed values (which the user can then cycle through in the display form). You can also specify a default value. A switch parameter is a parameter that has only two possible values: yes or no. It is used like a command switch argument.
  • 10. Parameter Declaration A parameter declaration is a line in a command macro that appears between the macro statements &begin_parameters and &end_parameters. It must contain the name of a parameter and it can contain a parameter descriptor (described later in this section). The form of a parameter declaration follows. parameter_name [parameter_descriptor] That portion of a macro from the &begin_parameters statement to the &end_parameters statement is called the parameter declaration section. The parameter declaration section must begin on the first line of the macro that is not a comment line.
  • 11. Parameter Label A label is an optional element of a parameter descriptor. Its purpose is to provide a descriptive term that will be useful to the user of a macro. It has the following form: label:
  • 12. Contd... The label, if specified, must be the first component of the parameter descriptor. The colon following label must be the only colon in the descriptor. Depending on the type of the parameter, the label appears in the display form, the command line form, both of these, or neither of these. The information provided by label is used differently depending on the type of the parameter. For a positional parameter, it labels the parameter's field in the display form. It also provides a label in the command line form when you give the command macro with the -usage option. For an optional parameter, it labels the parameter's field in the command line form only. For a switch parameter, there is no purpose for specifying a label, since it is used in neither the display form nor the command line form.
  • 13. Input Line To supply input to a program in a macro, you must include the following elements in the macro in the order shown: the &attach_input macro statement, which allows the program to accept input directly from the macro file the command to invoke the program input to the program (probably including a request such as quit to exit from the program) the &detach_input macro statement, which prevents any further program input from coming from the macro
  • 14. Command Function A command function is a self-contained function that you can use as an argument in a command line. Before executing the rest of the command line in which a command function appears, the command processor evaluates the command function and replaces it with a value. The value returned becomes part of the command line. For example, to display the current time, you could enter the following command line with the command function (time): display_line (time) The output for the preceding example could be 13:10:59, which specifies the current hour (13, in 24-hour format), minutes (10), and seconds (59).
  • 15. Library Path The operating system maintains a set of library paths for each process. Library paths specify where the operating system searches for external commands, include files, object files, or message files. The libraries are referred to as the command, include, object, and message libraries. Library paths fall into two categories. Default library paths are set for an entire module. All processes automatically include all default library paths in their library search paths. These library paths are generally set using the add_default_library_path command in module_start_up.cm. Typically these are library paths that all or almost all processes on the system will need (such as >system>command_library).
  • 16. References Command macros in Stratus Example Command Macros