<div dir="ltr"><div class="gmail_extra">Why do you need an option in `pass` itself for listing the passwords? They're just files. You can just use standard file listing functions/methods/etc. if you don't want the pretty-print version `pass` outputs.</div><div class="gmail_extra"><br></div><div class="gmail_extra">Pass itself uses either the value of the environment variable `PASSWORD_STORE_DIR` or `$HOME/.password-store` as the root path of the password store directory.</div><div class="gmail_extra"><br></div><div class="gmail_extra">Here's the relevant code from the Pass shell script:</div><div class="gmail_extra"><br></div><div class="gmail_extra">```</div><div class="gmail_extra">PREFIX="${PASSWORD_STORE_DIR:-$HOME/.password-store}"<br></div><div class="gmail_extra">```</div></div>