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