I saved a password but was on autopilot so not sure where it was saved. Is there a way (if not there should be) to view your accounts list by date added? Didn’t see it on the web or in the app so am asking here.
TIA.
–mike
I saved a password but was on autopilot so not sure where it was saved. Is there a way (if not there should be) to view your accounts list by date added? Didn’t see it on the web or in the app so am asking here.
TIA.
–mike
Hello @emopausal_live - welcome to the Bitwarden community!
I don’t know if there is any way to do this with a Bitwarden app or browser extension, but it is relatively easy to do with the Bitwarden Command Line Interface (CLI) with the following commands:
bw login
bw list items | jq 'sort_by(.revisionDate)'
This returns a JSON list of all your login items in your vault, and the most recently modified item will appear at the bottom of the list. Note that you will be prompted to enter your email then your master password twice.
Is jq
packaged with the Bitwarden CLI, or would one have to install this tool separately?
Sorry, I should have mentioned that you need the jq tool, also. Here is a link: