0
0
Fork 0

update README.md

It now displays the actual output. This is not a change in the programs
behaviour. The README.md was incorrect since version 0.2 .
This commit is contained in:
Adrian Wannenmacher 2023-11-17 07:16:19 +01:00
parent 7de766af8b
commit 13ad1878df
Signed by: tfld
GPG Key ID: 19D986ECB1E492D5
1 changed files with 24 additions and 11 deletions

View File

@ -10,17 +10,17 @@ To see available options run: `tree-owners --help`
Basic example when running in this repository:
```
$ tree-owners .
$ tree-owners
users:
adrian
adrian (1000)
groups:
users
users (985)
```
Using `uid`s and `gid`s:
```
$ tree-owners --raw .
$ tree-owners --raw
users:
1000
@ -30,13 +30,26 @@ groups:
Using `json` output:
```
$ tree-owners --json .
$ tree-owners --json
{
"users": [
"adrian"
],
"groups": [
"users"
]
"users": {
"1000": "adrian"
},
"groups": {
"985": "users"
}
}
```
Combining `json` and `uid`/`gid`:
```
$ tree-owners --raw --json
{
"users": {
"1000": null
},
"groups": {
"985": "users"
}
}
```