fmtmsg
[options] textPrint text as part of a formatted error message on standard error (or on the system console). text must be quoted as a single argument. fmtmsg is used in shell scripts to print messages in a standard format. Messages display as follows:
label: severity: textTO FIX:
action tag
You can define the MSGVERB variable to select which parts of the message to print. Each part is described with the options below.
The SEV_LEVEL environment variable allows you to add additional severities and associated strings to be printed when those severities are provided.
-a
actionA string describing the first action to take in recovering the error. The string "TO FIX:" precedes the action string.
-c
sourceThe source of the problem, where source is one of hard
(hardware), soft
(software), or firm
(firmware).
-l
labelIdentify the message source with a text label, often of the form file:
command.
-s
severityHow serious the condition is. severity is one of halt
, error
, warn
, or info
.
-t
tagAnother string identifier for the message.
-u
typesClassify the message as one or more types (separated by commas). types can be one of the keywords appl
, util
, or opsys
(meaning that the problem comes respectively from an application, utility, or the kernel), either of the keywords recov
or nrecov
(application will or won't recover), print
(message displays on standard error), and console
(message displays on system console).