How can I capture the Version of RSA Authentication Manager via command line? we have a requirement to validate the version we are running on a daily bases. If we could do this via command line, I can script it, thus not going through the GUI and printing it out every day.
Thanks in advance
If this is for AM 8.1, then try the below command as rsaadmin (its a bit cheesy, but should do the job):
rsaadmin@am81p:~> /opt/rsa/am/utils/rsautil -l | grep manage-secrets | grep -o "Manage Secrets .*" | cut -d ' ' -f 3
8.1.1.14.0
Edit 1: A more flexible command structure:
rsaadmin@am81p:~> /opt/rsa/am/utils/rsautil -l | tail -1 | rev | cut -d ' ' -f 2 | rev
8.1.1.14.0