mirror of
https://github.com/TeFiLeDo/tree-owners.git
synced 2025-04-28 06:49:32 +02:00
Find all owners (user and group) inside a directory tree.
Bumps [rustix](https://github.com/bytecodealliance/rustix) from 0.38.17 to 0.38.19. - [Release notes](https://github.com/bytecodealliance/rustix/releases) - [Commits](https://github.com/bytecodealliance/rustix/compare/v0.38.17...v0.38.19) --- updated-dependencies: - dependency-name: rustix dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
.github/workflows | ||
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
groups:
users
Using uid
s and gid
s:
$ tree-owners --raw .
users:
1000
groups:
985
Using json
output:
$ tree-owners --json .
{
"users": [
"adrian"
],
"groups": [
"users"
]
}