no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
— | command_arguments [2014/01/14 00:46] (current) – created - external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Command Arguments ====== | ||
+ | * [[Shell Commands]] | ||
+ | |||
+ | A quick note about commands and **arguments**. | ||
+ | |||
+ | If there is a **short command**, the argument generally begins with one dash: | ||
+ | |||
+ | < | ||
+ | $ ls -a | ||
+ | </ | ||
+ | |||
+ | If there is a **long command** that does something similar, it generally begins with two dashes, followed by a word: | ||
+ | |||
+ | < | ||
+ | $ ls --all | ||
+ | </ | ||
+ | |||
+ | There are exceptions to these, but this is mostly true. |