Visualizing Keychain Item Details
Solution 1:
The CLI for keychains is: security.
It lets you do many things such as…
-
Getting item info:
security find-generic-password -a <item-name>
-
Getting passwords:
security 2>&1 >/dev/null find-generic-password -ga <item-name>
Read the man page for more info or do security help
.