HP C/iX Reference Manual (31506-90011)

190 AppendixA
Run-Time Diagnostic Messages
Error Messages
Error Messages
1 AMBIGUOUS INPUT REDIRECT
More than one input redirection character ( < ) appears in the INFO string. For example,
RUN prog; INFO="<
infile1
<
infile2
"
Remove one of the input redirection specifiers.
2 AMBIGUOUS OUTPUT REDIRECT
More than one output redirection character ( > ) appears in the INFO string. For example,
RUN prog; INFO=">
outfile1
>
outfile2
"
Remove one of the output redirection specifiers.
3 BAD NAME FOR REDIRECT
The file name specified for input/output redirection in the INFO string does not begin with an
asterisk ( * ), a dollar sign ( $ ), or an alphabetic character. For example,
RUN prog; INFO=">
2badfile
"
Specify a valid file name for input/output redirection.
4 MISSING NAME FOR REDIRECT
An input/output redirection character ( < or > ) appears in the INFO string but no
corresponding file name is specified. For example,
RUN prog; INFO="<"
Specify a file name for the redirection.
5 UNMATCHED QUOTE WITHIN INFO STRING
A quoted string within the INFO string contains a beginning quote but no matching end
quote. For example,
RUN prog; INFO="'
quoted string
"
Add a matching end quote to the quoted string.
6 REDIRECTION OF STDIN FAILED
The file specified for input redirection in the INFO string can not be opened. For example,
RUN prog; INFO="<
badfile
"
where
badfile
does not exist.
Check to see if the file specified for redirection exists and is accessible for reading by the user
invoking the program.
7 REDIRECTION OF STDOUT FAILED