When the following command run in an attempt to list all UNAB users, a usage error occurs. Is it possible to list all UNAB users with one command?
# uxconsole -manage -show -detail -user *
CA Privileged Access Manager Server Control UNAB uxconsole v12.81.0.1912 - console utility
Copyright (c) 2018 CA. All rights reserved.
Usage: uxconsole -manage {-find | -show [-detail]} {-user <filter> | -group <filter>}
uxconsole -manage -show -policy
Where:
-find List users/groups.
-show Display users/groups/policy information.
-show -detail Display users/groups extended information.
-user <filter> Apply to users matching the filter.
-group <filter> Apply to groups matching the filter.
-policy Apply to enterprise login policies.
UNIX Authentication Broker 12.8
It is possible to list all users with the following logic.
for u in {{a..z},{A..Z},{0..9}}; do uxconsole -manage -show -detail -user $u*; done