Ich frage mich immer: Die meisten GNU / Unix-Tools verwenden Optionen in der Form "minus etwas", manchmal gefolgt von einem Argument. Was ist, wenn Sie eine Datei mit dem Namen minus etwas haben?
$ 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.
oder
$ ls
-ohello.c
$ gcc -ohello -ohello.c
gcc: fatal error: no input files
compilation terminated.
Dies ist nur aus Neugier; Ich habe keinen Anwendungsfall dafür.