This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/bin/pass-otp
2020-09-17 09:45:58 -05:00

10 lines
172 B
Bash
Executable file

#!/usr/bin/env bash
# TODO: check for pass
key="$1"; shift
args=("$@")
otp="$(pass "$key" | grep -Pi '^otp.*: ?.*$' | cut -d ':' -f 2 | sed 's/ //g')"
simple-otp "$otp"