Opzioni

Il normale comportamento di un comando puņ essere modificato aggiungendo --opzione al comando. Per esempio, il comando ls ha un'opzione -s, in modo che ls -s visualizzi le dimensioni dei file nell'output. Č presente anche un'opzione -h per avere le dimensioni in un formato leggibile.

Options can be grouped in clusters, so

ls -sh

is the same command as

 ls -s -h

Most options have a long version, prefixed with two dashes instead of one, so

ls --size --human-readable

is also the same command as

ls -sh