1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:37:35 +00:00

find: Add ! operator to negate the following command

This commit is contained in:
Tim Ledbetter 2023-08-31 22:26:19 +01:00 committed by Andrew Kaster
parent 6952de73dc
commit d277d2e1fb
2 changed files with 26 additions and 4 deletions

View file

@ -78,6 +78,7 @@ by the current user.
The commands can be combined to form complex expressions using the following
operators:
* `! command`: Logical NOT.
* `command1 -o command2`: Logical OR.
* `command1 -a command2`, `command1 command2`: Logical AND.
* `( command )`: Groups commands together for operator priority purposes.