Updated: October 28, 2024 |
Whenever you look up a command in the Utilities Reference, you'll see a syntax statement that summarizes how you can use the command.
For most commands, this statement consists of the following components:
The entries in the Utilities Reference use some special symbols to express the command syntax:
less myfile1 myfile2
You don't actually type these symbols when you invoke the command. For instance, the syntax description for less is given as follows:
less [-[+]aBcCdeEfimMnNqQrsSuUw] [-b n] [-x n] [-[z] n] [-h n] [-j n] [-p pattern] [-y n] [-[oO] logfile] [-t tag] [-T tagsfile] [+ cmd] [file...]
You can combine multiple options that don't take an argument. The -aBcCdeEfimMnNqQrsSuUw notation is shorthand for -a -B -c -C -d and so on.
If an argument to a command starts with a hyphen, you can signal the end of the options by using a double hyphen:
ls -l -- -my_file
For more information, see Utility Conventions in the Utilities Reference.