wiki/help/linux/bash/basic/arguments.md

8 lines
200 B
Markdown
Raw Normal View History

# arguments.
## break flags.
if you insert \-\- then all input after that will be treated as non-flags.
```bash
rm -- -r -f # this will remove "-r" and "-f" files instead of recursive and force.
```