11 · The Command Line

Flag / Argument

The options after a command

The extra pieces after a command: arguments are what it acts on; flags (like -r or --force) change how it behaves.

Concrete example

In “rm -r old/”, the “-r” is a flag (recursive) and “old/” is the argument (what to remove).