What’s a Command?
A Linux command typically consists of a program name followed by options and arguments, typed within a shell, like this:
$ wc -l myfile
The program name (wc, the
“word count” program) refers to a program somewhere on disk that the
shell will locate and run. Options, which usually begin with a dash,
affect the behavior of the program. In the preceding command, the
-l option tells wc to count lines rather than words. The
argument myfile specifies the file
that wc should read and process.
The leading dollar sign ($) is a
prompt from the shell, indicating that it is
waiting for your command.
Commands can have multiple options and arguments. Options may be given individually:
$ wc -l -w myfile Two individual optionsor combined behind a single dash:
$ wc -lw myfile Same as -l -wthough some programs are quirky and do not recognize combined options. Multiple arguments are also OK:
$ wc -l myfile1 myfile2 Count lines in two filesOptions are not standardized. The same option letter (say,
-l) may have different meanings to
different programs: in wc -l it means “lines of text,” but
in ls -l it means “longer output.”
In the other direction, two programs might use different options to
mean the same thing, such as -q for
“run quietly” versus -s for “run
silently.”
Likewise, arguments are not standardized, unfortunately. They usually represent filenames for input or output, but they can be other things too, like directory names or regular expressions.
Commands can be more complex and ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access