One common question is how to remove files whose names begin with a
`-'. GNU `rm', like every program that uses the `getopt' function to
parse its arguments, lets you use the `--' option to indicate that all
following arguments are non-options. To remove a file called `-f' in
the current directory, you could type either:
rm -- -f
or:
rm ./-f
@ mv나 ls에도 똑같이 적용됩니다.
: -로 시작하는 파일을 access하려면 어떻게 해야하나요?
: ls, mv 등 모든 명령이 options으로 인식해버립니다.