nix/bin/simple-otp
2023-09-05 13:52:52 -05:00

8 lines
122 B
Bash
Executable file

#!/usr/bin/env bash
# TODO: check for oathtool
key="$1"; shift
args=("$@")
oathtool --totp=sha1 -b "$key" "${args[@]}"