Command to see all of your own hashes/key's

Complete new, but excited

Is there a command to see all of your own hashes/key’s?
And what the content is of that key/hashes?

You can see all hashes you have pinned with ipfs pin ls --type=recursive.

If you wanted to spit out what’s in each hash, you could use a command something like the one below to list the contents of each pin.

ipfs pin ls --type=recursive -q | xargs -L 1 -I % sh -c 'echo ipfs ls %; ipfs ls %'
1 Like

Yes! This is where I was looking for!
Thanks, this helps to understand ipfs