DEV Community

Eldad Assis for JFrog

Posted on

List Artifactory pro admin users - one liner

When you have many users in Artifactory, you can get all admins with a quick one liner using the REST API from Linux command line.

for name in \
  $(curl -s -uadmin:password https://host/artifactory/api/security/users | jq ".[].name" | tr -d '"'); do \
  echo \
  "$name: $(curl -s -uadmin:password https://host/artifactory/api/security/users/$name | jq '.admin')"; \
done

Easy!

Top comments (1)

Collapse
 
rikwasmus profile image
rikwasmus

Rather than jq ".[].name" | tr -d '"', try jq -r ".[].name"