0
0
Fork 0
tree-owners/README.md

501 B

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

$ tree-owners --raw .
users:
    1000

groups:
    985

Using json output:

$ tree-owners --json .
{
  "users": [
    "adrian"
  ],
  "groups": [
    "users"
  ]
}