<div dir="ltr">Here's my version of using 'find' that I've built up to include directories, not hit on the .gpg extension and other gotchas.<div><br></div><div>Obviously it's intended for zsh with the argument quoting, but all the find parts should be portable.</div>

<div> </div><div>Von</div><div><br></div><div><div># Search passwords for string and return matches, one per line</div><div>search_pass() {</div><div>    local store="${PASSWORD_STORE_DIR:-$HOME/.password-store}"</div>

<div><br></div><div>    if test $# -ne 1 ; then</div><div>      echo "Usage: $0 <search_string>" 1>&2</div><div>      exit 1</div><div>    fi</div><div><br></div><div>    # Change dir to store so we can run 'find .' and not match</div>

<div>    # on password store directory.</div><div>    cd "${store}"</div><div><br></div><div>    # All arguments escaped and joined into one string</div><div>    search_string="${(j. .)${(q)@}}" ; shift</div>

<div><br></div><div>    # Find first clause prunes .git/ directory</div><div>    # Second clause matches entries with matching directory components</div><div>    # Third clause matches any part of filename, ignoring .gpg suffic</div>

<div>    # -iname and -ipath are case-insensitive</div><div>    # sed command strips password store path prefix and .gpg suffix</div><div>    find . -type d -name .git -prune \</div><div>      -o -ipath "*/*${search_string}*/*" -print \</div>

<div>      -o -iname "*${search_string}*.gpg" -type f -print \</div><div>      | sed -e "s#${store}.##" -e 's#\.gpg$##' | sort</div><div>}</div></div><div><br></div></div><div class="gmail_extra">

<br><br><div class="gmail_quote">On Thu, Apr 4, 2013 at 9:53 AM, Jason A. Donenfeld <span dir="ltr"><<a href="mailto:Jason@zx2c4.com" target="_blank">Jason@zx2c4.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

Hi Alexis,<div><br></div><div>In the past I haven't been too keen on adding search functionality, as I think utilities like GNU Find are better suited, and since pass is just a standard directory tree...</div><div><br>


</div><div>But lots of people want this feature, so it will land.</div><div><br></div><div>That said, I want to figure out a way to also search directory names in addition to file names. This fits the most common organizational scheme for pass. Any suggestions on the best way to do this?</div>


<div><br></div><div>I've rewritten your patch, and attached my current version here. Please base any improvements off of this one.</div><span class="HOEnZb"><font color="#888888"><div><br></div><div>Jason</div>
</font></span><br>_______________________________________________<br>
Password-Store mailing list<br>
<a href="mailto:Password-Store@lists.zx2c4.com">Password-Store@lists.zx2c4.com</a><br>
<a href="http://lists.zx2c4.com/listinfo.cgi/password-store-zx2c4.com" target="_blank">http://lists.zx2c4.com/listinfo.cgi/password-store-zx2c4.com</a><br>
<br></blockquote></div><br></div>