0
0
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.
Go to file
dependabot[bot] 2ae2b2eeff
Bump the minor group with 3 updates
Bumps the minor group with 3 updates: [anyhow](https://github.com/dtolnay/anyhow), [clap](https://github.com/clap-rs/clap) and [clap_complete](https://github.com/clap-rs/clap).


Updates `anyhow` from 1.0.76 to 1.0.77
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.76...1.0.77)

Updates `clap` from 4.4.11 to 4.4.12
- [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/v4.4.11...v4.4.12)

Updates `clap_complete` from 4.4.4 to 4.4.5
- [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.4.4...clap_complete-v4.4.5)

---
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: clap_complete
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-12-29 23:12:22 +00:00
.github fix dependabot config 2023-11-17 08:11:44 +01:00
src simplify help texts 2023-09-24 15:16:18 +02:00
.gitignore initial implementation 2023-09-24 05:38:22 +02:00
build.rs adapt release to completion generation 2023-09-24 14:58:17 +02:00
Cargo.lock Bump the minor group with 3 updates 2023-12-29 23:12:22 +00:00
Cargo.toml Bump the minor group with 3 updates 2023-12-29 23:12:22 +00:00
LICENSE add license and prepare for publishing 2023-09-24 06:23:20 +02:00
README.md update README.md 2023-11-17 07:16:19 +01:00

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 uids and gids:

$ 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"
  }
}