source: code/trunk/addons/kanako-totp@ 22

Last change on this file since 22 was 20, checked in by yakumo.izuru, 21 months ago

Release v2

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

File size: 378 bytes
RevLine 
[20]1#!/bin/sh -e
2# $TheSupernovaDuo: kanako,v 1.9 2023/5/18 21:9:33 yakumo_izuru Exp $
3# extracted from https://rgz.ee/bin/pass
4
5totp_seed="$(kanako -v "$@" | grep 'totp: ' | head -n1 | cut -d' ' -f2)"
6if ! [ -z "$totp_seed" ]; then
7 if command -v oathtool >/dev/null 2>&1; then
8 oathtool --totp -b "$totp_seed"
9 else
10 echo 'oathtool(1) should be installed'
11 exit 1
12 fi
13fi
Note: See TracBrowser for help on using the repository browser.