2022-08-15 15:40:20 +00:00
|
|
|
`find` is an example of position-sensitive flags
|
|
|
|
|
|
|
|
```console
|
|
|
|
$ find --help
|
|
|
|
A simple to use, efficient, and full-featured Command Line Argument Parser
|
|
|
|
|
2022-09-12 21:59:57 +00:00
|
|
|
Usage: find[EXE] [OPTIONS]
|
2022-08-15 15:40:20 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Options:
|
2023-01-03 16:49:43 +00:00
|
|
|
-h, --help Print help
|
|
|
|
-V, --version Print version
|
2022-08-15 15:40:20 +00:00
|
|
|
|
|
|
|
TESTS:
|
2024-01-08 15:58:42 +00:00
|
|
|
--empty File is empty and is either a regular file or a directory
|
|
|
|
--name <name> Base of file name (the path with the leading directories removed) matches shell
|
|
|
|
pattern pattern
|
2022-08-15 15:40:20 +00:00
|
|
|
|
|
|
|
OPERATORS:
|
2024-01-08 15:58:42 +00:00
|
|
|
-o, --or expr2 is not evaluate if exp1 is true
|
|
|
|
-a, --and Same as `expr1 expr1`
|
2022-08-15 15:40:20 +00:00
|
|
|
|
|
|
|
$ find --empty -o --name .keep
|
|
|
|
[
|
|
|
|
(
|
|
|
|
"empty",
|
|
|
|
Bool(
|
|
|
|
true,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"or",
|
|
|
|
Bool(
|
|
|
|
true,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"name",
|
|
|
|
String(
|
|
|
|
".keep",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
2024-01-08 15:48:34 +00:00
|
|
|
$ find --empty -o --name .keep -o --name foo
|
2024-01-08 15:50:40 +00:00
|
|
|
[
|
|
|
|
(
|
|
|
|
"empty",
|
|
|
|
Bool(
|
|
|
|
true,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"or",
|
|
|
|
Bool(
|
|
|
|
true,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"name",
|
|
|
|
String(
|
|
|
|
".keep",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"or",
|
|
|
|
Bool(
|
|
|
|
true,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"name",
|
|
|
|
String(
|
|
|
|
"foo",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
]
|
2024-01-08 15:48:34 +00:00
|
|
|
|
2022-08-15 15:40:20 +00:00
|
|
|
```
|
|
|
|
|