Siempre me pregunto: la mayoría de las herramientas GNU / Unix toman opciones en la forma "menos algo", a veces seguidas de un argumento. ¿Qué pasa si tienes un archivo llamado menos algo?
$ 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.
Esto es solo por curiosidad; No tengo un caso de uso para esto.