mirror of
https://github.com/TeFiLeDo/tree-owners.git
synced 2024-11-12 22:36:17 +01:00
Find all owners (user and group) inside a directory tree.
c7a35dee6f
Bumps the minor group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.81` | `1.0.86` | | [clap](https://github.com/clap-rs/clap) | `4.5.3` | `4.5.7` | | [serde](https://github.com/serde-rs/serde) | `1.0.197` | `1.0.203` | | [serde_json](https://github.com/serde-rs/json) | `1.0.114` | `1.0.117` | | [clap_complete](https://github.com/clap-rs/clap) | `4.5.1` | `4.5.6` | Updates `anyhow` from 1.0.81 to 1.0.86 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.81...1.0.86) Updates `clap` from 4.5.3 to 4.5.7 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.3...v4.5.7) Updates `serde` from 1.0.197 to 1.0.203 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.197...v1.0.203) Updates `serde_json` from 1.0.114 to 1.0.117 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.114...v1.0.117) Updates `clap_complete` from 4.5.1 to 4.5.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.1...clap_complete-v4.5.6) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: clap_complete dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor ... Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
.github | ||
src | ||
.gitignore | ||
build.rs | ||
Cargo.lock | ||
Cargo.toml | ||
LICENSE | ||
README.md |
tree-owners
Find all owners (user and group) inside a directory tree.
© Adrian Wannenmacher - Licensed under the EUPL
Usage
To see available options run: tree-owners --help
Basic example when running in this repository:
$ tree-owners
users:
adrian (1000)
groups:
users (985)
Using uid
s and gid
s:
$ tree-owners --raw
users:
1000
groups:
985
Using json
output:
$ tree-owners --json
{
"users": {
"1000": "adrian"
},
"groups": {
"985": "users"
}
}
Combining json
and uid
/gid
:
$ tree-owners --raw --json
{
"users": {
"1000": null
},
"groups": {
"985": "users"
}
}