Parameters
When you type on the command line, the shell that your terminal uses (e.g. bash, zsh, etc.) can also accept parameters that change what the command will do. These are called "flags".
👉 For example, the id
command (like whoami
) will return login information, but using the following flags will be more specific.
id -un
👉 The man
command shows the manual file associated with a command, including all flags. Add the command name at the end.
man id