Name
bite-bugzilla-user-get - get users
Synopsis
- bite bugzilla user <get|g> [<options>] <id[,…]>
-
Get users.
- bite bugzilla user <get|g> [-h|--help]
-
Output help information.
Description
Get users.
Global Options
- -v, --verbose
-
Increase logging verbosity.
Verbosity levels in increasing order are error, warning, info, debug, and trace. The default level is warning causing errors and warnings to be shown. Each
-v/--verboseoption specified increases the level up to the maximum sobite -vv …runs the given subcommand at the debug level.WarningRunning at the trace level leaks authentication data as it outputs raw response structures including URLs which often include injected login parameters for authenticated sessions. - -q, --quiet
-
Decrease logging verbosity.
- -h, --help
-
Print help output and exit.
User options
- -d, --disabled
-
Include disabled user accounts.
- -g, --groups <value[,…]>
-
User group IDs or names.
Arguments
- <id[,…]>
-
User IDs or names.
Taken from standard input when
-.
Examples
Get user with ID:
bite bugzilla user get 123
Get user with email address:
bite bugzilla user get email@domain.com
Get all users with gmail addresses:
bite bugzilla user get gmail.com
Get all users belonging to group #123 and "test":
bite bugzilla user get -g 123,test "*"