chore: update --hidden help message
This commit is contained in:
parent
cc0014c183
commit
64e397d18a
2 changed files with 4 additions and 4 deletions
|
@ -52,7 +52,7 @@ OPTIONS:
|
||||||
-b, --bind <addr>... Specify bind address
|
-b, --bind <addr>... Specify bind address
|
||||||
-p, --port <port> Specify port to listen on [default: 5000]
|
-p, --port <port> Specify port to listen on [default: 5000]
|
||||||
--path-prefix <path> Specify a path prefix
|
--path-prefix <path> Specify a path prefix
|
||||||
--hidden <value> Hide directories from directory listings, separated by `,`
|
--hidden <value> Hide paths from directory listings, separated by `,`
|
||||||
-a, --auth <rule>... Add auth for path
|
-a, --auth <rule>... Add auth for path
|
||||||
--auth-method <value> Select auth method [default: digest] [possible values: basic, digest]
|
--auth-method <value> Select auth method [default: digest] [possible values: basic, digest]
|
||||||
-A, --allow-all Allow all operations
|
-A, --allow-all Allow all operations
|
||||||
|
@ -186,9 +186,9 @@ dufs -a /@admin:pass1@* -a /ui@designer:pass2 -A
|
||||||
- Account `designer:pass2` can upload/delete/view/download any files/folders in the `ui` folder.
|
- Account `designer:pass2` can upload/delete/view/download any files/folders in the `ui` folder.
|
||||||
|
|
||||||
|
|
||||||
### Hide
|
### Hidden Paths
|
||||||
|
|
||||||
Dufs supports hiding directories/files via option `--hidden`.
|
Dufs supports hiding paths from directory listings via option `--hidden`.
|
||||||
|
|
||||||
```
|
```
|
||||||
dufs --hidden .git,.DS_Store
|
dufs --hidden .git,.DS_Store
|
||||||
|
|
|
@ -56,7 +56,7 @@ pub fn build_cli() -> Command<'static> {
|
||||||
.arg(
|
.arg(
|
||||||
Arg::new("hidden")
|
Arg::new("hidden")
|
||||||
.long("hidden")
|
.long("hidden")
|
||||||
.help("Hide directories from directory listings, separated by `,`")
|
.help("Hide paths from directory listings, separated by `,`")
|
||||||
.value_name("value"),
|
.value_name("value"),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
|
|
Loading…
Reference in a new issue