Added a clarification that the brackets in find expressions must be separated to avoid confusing errors

Tom Grace
2024-09-19 09:48:04 +01:00
parent 659bfd31dc
commit 64c641eff8

@@ -11,6 +11,7 @@ find . -name '*.avi' -o -name '*.mkv' -exec cp {} /media \;
```sh
find . \( -name '*.avi' -o -name '*.mkv' \) -exec cp {} /media \;
```
Note that the space between `\(` and `-name` in this command is significant.
### Rationale: