Mi chiedo sempre: la maggior parte degli strumenti GNU / Unix prendono opzioni nella forma "meno qualcosa", a volte seguita da un argomento. E se avessi un file chiamato meno qualcosa?
$ ls
-f
$ rm -f
$ ls
-f
$ mv -f abc
mv: missing destination file operand after `abc'
Try `mv --help' for more information.
$ cat -f
cat: invalid option -- 'f'
Try `cat --help' for more information.
o
$ ls
-ohello.c
$ gcc -ohello -ohello.c
gcc: fatal error: no input files
compilation terminated.
Questo è solo per curiosità; Non ho un caso d'uso per questo.