The return codes of the program are also called completion codes and returned at program termination. This content is printed on the screen with the built-in function ERRORS.
The command line is interpreted by CLE the command string by CLP. For example:
:> flcl conv "read.file='test.txt' write.flam(file='test.adc')" | | |-- the command string is compiled by CLP | | | and might result in a syntax error | |-- conv is part of the command line |-- flcl is part of the command line :> flcl owner=xxx conv=para.txt maxcc=-2 quiet | | | | | |-- silent or quiet is part of the comand line | | | | |-- maxx is part of the comand line | | | |-- para.txt is part of the command line, but the content | | | of para.txt might contain a CLP syntax error | | |-- conv is part of the command line | |-- owner is part of the comand line |-- flcl is part of the command line
A command execution (run) will return 0 or 1 on success, 4 if a warning occurs (only some of the files converted), 8 in case of an error or special condition codes greater then 64 can be returned.
If the command execution was successful (return code 0) but a relevant warnings was logged then the return code is 1 (anything was fine, but please have a look in the log (e.g. a key is close to expire)). A return code of 2 indicates that a call to the finish function failed. Such a fail of the finish function is not recognizable if the run function (command execution) returns with a warning or an error. On the other side, if the finish failed then an additional warning in the log cannot determined because the condition code is still 2. All completion codes bigger than 8 and smaller or equal to 64 indicate an error in front of the command execution.
A relevant warning is a warning written to the log by a used component. Warnings written by components which are removed from procession because the format does not fit or something else, are still in the log but not relevant for the completion code 1.
If the return codes 1 and 2 are to be 0 and therefore ignored, the parameter MAXCC=-2 must be set.