<div dir="ltr">Hi All:<div><br></div><div>I was wondering how you identify passwords that haven't been changed in a while. </div><div><br></div><div>Maybe someone has a better solution but this is what I came up with:</div><div><br></div><div><div>git ls-tree -r HEAD --name-only -z | xargs -0 -n1 -I{} sh -c 'echo {}; \</div><div>   git log -n1 --format="%at:%ar" -- {}' | paste - - -d: | sort -k 2 -t: | \</div><div>   cut -d: -f1,3- | column -t -s:</div></div><div><br></div><div>My solution is mildly naive because it doesn't look for changes to the first line, which is where passwords are normally stored.  But for my use I think it does the job.</div><div><br></div><div>Is this a feature that people might want built in to pass? If so, I would be willing to try making and submitting a patch. Also I would enjoy any feedback you might have.</div><div><br></div><div>Thanks for reading,</div><div>Paul</div></div>