cells-ctl data list
cells-ctl data list
List data indexed in Pydio
Synopsis
List data indexed in Pydio.
Lists data from either the tree service (all data sources aggregated) or directly from a datasource index (using the --source flag).
EXAMPLES
Let's say you have one datasource named pydiods1 containing one file image.png
List all data aggregated by the tree $ ./pydioctl data list +----------+------+---------------------+ | NAME | TYPE | UUID | +----------+------+---------------------+ | pydiods1 | 0 | DATASOURCE:pydiods1 | +----------+------+---------------------+
$ ./pydioctl data list --path=pydiods1 +--------------+------+--------------------------------------+ | NAME | TYPE | UUID | +--------------+------+--------------------------------------+ | image.png | 1 | 244f072d-d9a1-11e7-950b-685b35ac60e5 | +--------------+------+--------------------------------------+
List all data for a given data source $ ./pydioctl data list --source=pydiods1 +--------------+------+--------------------------------------+ | NAME | TYPE | UUID | +--------------+------+--------------------------------------+ | image.png | 1 | 244f072d-d9a1-11e7-950b-685b35ac60e5 | +--------------+------+--------------------------------------+
cells-ctl data list [flags]
Options
-h, --help help for list
-p, --path string Path to the data
-r, --recursive Print all the nodes recursively
--user string Do the listing with the context of a user's permissions
-u, --uuid string UUID of the data
Options inherited from parent commands
--registry string Registry used to manage services (default "nats")
--source string Source where the data resides
SEE ALSO
- cells-ctl data - Commands for managing indexed data