aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sh/.local/bin/passmenu
blob: 4e0b265586fa06557a3bf56eb52b789d17c67581 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

for file in "$PASSWORD_STORE_DIR"/**/*.gpg; do
	if [ -e "$file" ]; then
		file="${file#"$PASSWORD_STORE_DIR"/}"
		printf '%s\n' "${file%.gpg}"
	fi
done
exit 0