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