dotfiles/bin/secret.sh

9 lines
129 B
Bash
Raw Permalink Normal View History

2025-01-18 20:12:19 +01:00
#!/bin/sh
gopass show -o "$1" "$2"
# wait until the password is available
while [ $? != 0 ]; do
gopass show -o "$1" "$2"
done