- PREFACE AND OVERVIEW =>
- INTRODUCTION =>
- LIVE MAN PAGE FOR USER COMMANDS =>
SOURCE
Name
- Intro– introduction to commands and application programs
Description
- This section describes, in alphabetical order, commands available with this operating system. Pages of special interest are categorized as follows:
- 1B
- Commands found only in the SunOS/BSD Compatibility Package.
- 1C
- Commands for communicating with other systems.
- 1F
- Commands associated with Form and Menu Language Interpreter (FMLI).
- 1S
- Commands specific to SunOS.
- Section 1M for system maintenance commands.
- Section 4 for information on file formats.
- Section 5 for descriptions of publicly available files and miscellaneous information pages.
- [ ]
- Surround an option or cmdarg that is not required.
- ...
- Indicates multiple occurrences of the option or cmdarg.
- name
- The name of an executable file.
- { }
- The options and/or arguments enclosed within braces are interdependent, such that everything enclosed must be treated as a unit.
- option
- (Always preceded by a “-”.) noargletter... or, argletter optarg[,...]
- noargletter
- A single letter representing an option without an option-argument. Notice that more than one noargletter option can be grouped after one “-” (Guideline 5, below).
- argletter
- A single letter representing an option requiring an option-argument.
- optarg
- An option-argument (character string) satisfying a preceding argletter. Notice that groups of optargs following an argletter must be separated by commas, or separated by a tab or space character and quoted (Guideline 8, below).
- cmdarg
- Path name (or other command argument) not beginning with “-”, or “-” by itself indicating the standard input.
- The number is interpreted as a decimal integer.
- Numerals in the range 0 to 2147483647 are syntactically recognized as numeric values.
- When the utility description states that it accepts negative numbers as operands or option-arguments, numerals in the range -2147483647 to 2147483647 are syntactically recognized as numeric values.
- Ranges greater than those listed here are allowed.
- Command names (name above) should be between two and nine characters long.
- Command names should include only lower-case letters and digits.
- Option names (option above) must be one character long.
- All options must be preceded by “-”.
- Options with no arguments can be grouped after a single “-”.
- The first option-argument (optarg above) following an option must be preceded by a tab or space character.
- Option-arguments cannot be optional.
- Groups of option-arguments following an option must either be separated by commas or separated by tab or space character and quoted (-o xxx,z,yy or -o“xxx z yy”).
- All options must precede operands (cmdarg above) on the command line.
- “- -” can be used to indicate the end of the options.
- The order of the options relative to one another should not matter.
- The relative order of the operands (cmdarg above) can affect their significance in ways determined by the command with which they appear.
- “-” preceded and followed by a white space character should only be used to mean standard input.
- If the SYNOPSIS of a utility shows a SPACE between a short-option and option-argument (as with -c option_argument in the example), the application uses separate arguments for that option and its option-argument.
- If a SPACE is not shown (as with -f option_argument in the example), the application expects an option and its option-argument directly adjacent in the same argument string, without intervening BLANKs.
- Notwithstanding the preceding requirements, an application should accept short-options and option-arguments as a single argument or as separate arguments whether or not a SPACE is shown on the synopsis line.
- Long-options with option-arguments are always documented as using an equals sign as the separator between the option name and the option-argument. If the OPTIONS section of a utility shows an equals sign (=) between a long-option and its option-argument (as with --longopt2= option_argument in the example), a application shall also permit the use of separate arguments for that option and its option-argument (as with --longopt1 option_argument in the example).
- 14.
- The form command subcommand [options] [operands] is appropriate for grouping similar operations. Subcommand names should follow the same conventions as command names as specified in guidelines 1 and 2.
- 15.
- Long-options should be preceded by -- and should include only alphanumeric characters and hyphens from the portable character set. Option names are typically one to three words long, with hyphens to separate words.
- 16.
- --name=argument should be used to specify an option-argument for a long-option. The form --name argument is also accepted.
- 17.
- All utilities should support two standard long-options: --version (with the short-option synonym -V ) and --help (with the short-option synonym -? ). The short option synonyms for --version can vary if the preferred synonym is already in use (but a synonym shall be provided). Both of these options stop further argument processing when encountered and after displaying the appropriate output, the utility successfully exits.
- 18.
- Every short-option should have exactly one corresponding long-option and every long-option should have exactly one corresponding short-option. Synonymous options can be allowed in the interest of compatibility with historical practice or community versions of equivalent utilities.
- 19.
- The short-option name should get its name from the long-option name according to these rules:
- Use the first letter of the long-option name for the short-option name.
- If the first letter conflicts with other short-option names, choose a prominent consonant.
- If the first letter and the prominent consonant conflict with other shortoption names, choose a prominent vowel.
- If none of the letters of the long-option name are usable, select an arbitrary character.
- Use the first letter of the long-option name for the short-option name.
- 20.
- If a long-option name consists of a single character, it must use the same character as the short-option name. Single character long-options should be avoided. They are only allowed for the exceptionally rare case that a single character is the most descriptive name.
- 21.
- The subcommand in the form described in guideline 1 of the additional CLIP guidelines is generally required. In the case where it is omitted, the command shall take no operands and only options which are defined to stop further argument processing when encountered are allowed. Invoking a command of this form without a subcommand and no arguments is an error. This guideline is provided to allow the common forms command --help, command -?, command --version, and command -V to be accepted in the command-subcommand construct.
OTHER SECTIONS
- See the following sections of the SunOS Reference Manual for more information.
Manual Page Command Syntax
- Unless otherwise noted, commands described in the SYNOPSIS section of a manual page accept options and other arguments according to the following syntax and should be interpreted as explained below. name [-option...] [cmdarg...] where:
Command Syntax Standard: Guidelines
- These command syntax guidelines are not followed by all current commands, but new commands are likely to obey them. getopts(1) should be used by all shell procedures to parse positional parameters and to check for legal options. It supports Guidelines 3-10 below. The enforcement of the other guidelines must be done by the command itself.
utility_name -a --longopt1 -c option_argument \ -f option_argument --longopt2=option_argument \ --longopt3 option_argument operand |
Attributes
- See attributes(5) for a discussion of the attributes listed in this section.
See Also
Diagnostics
- Upon termination, each command returns two bytes of status, one supplied by the system and giving the cause for termination, and (in the case of “normal” termination) one supplied by the program [see wait(3UCB) and exit(2)]. The former byte is 0 for normal termination. The latter byte is customarily 0 for successful execution and non-zero to indicate troubles such as erroneous parameters, or bad or inaccessible data. It is called variously “exit code”, “exit status”, or “return code”, and is described only where special conventions are involved.
Warnings
- Some commands produce unexpected results when processing files containing null characters. These commands often treat text input lines as strings and therefore become confused upon encountering a null character (the string terminator) within a line. SOURCE
0 comments:
Post a Comment