X-Git-Url: https://git.sev.monster/~sev/dotfiles.git/blobdiff_plain/79d4a3561fa6b4bc80d75d8f9940139c2437df36..7c1bd0ffa0fc824d65d33ae5c024c39edd64fbc6:/bin/ykman-oath-reload diff --git a/bin/ykman-oath-reload b/bin/ykman-oath-reload old mode 100644 new mode 100755 index 0d6d709..d39e113 --- a/bin/ykman-oath-reload +++ b/bin/ykman-oath-reload @@ -1,17 +1,37 @@ #!/bin/zsh +# find the right binary under mingw, cygwin +for x ({/mnt,}/c/Program\ Files{,\ \(x86\)}/Yubico/YubiKey\ Manager/ykman.exe ykman) { + if [[ -x $x ]] { + yk=$x + } elif [[ -v commands[$x] ]] { + yk=$commands[$x] + } +} read -s 'p?Password:'$'\n' typeset -a oath -echo OATH URIs: -while read -r x; do - [[ -z $x ]] && break - oath+=($x) -done -for x in $(ykman list --serials); do - ykman -d $x oath accounts list -Hp $p | while read -r y; do - ykman -d $x oath accounts delete -fp $p ${y/%$'\r'} - done - for y in "$oath[@]"; do - ykman -d $x oath accounts uri -fp $p $y - done -done -# vim: sts=4 sw=4 et +if [[ -f ./oath.txt ]] { + # attempt to pull from local file first + cat ./oath.txt | while {read -r x} { + echo $x + [[ -n $x && ! $x =~ '^\s*#' ]] && oath+=($x) + } +} else { + # read from stdin otherwise, empty line to stop + echo OATH URIs: + while {read -r x} { + [[ -z $x ]] && break + [[ ! $x =~ '^\s*#' ]] && oath+=($x) + } +} +for x ($($yk list --serials)) { + # NOTE: `%$'\r'` to strip carriage return from Windows binary output + x=${x/%$'\r'} + # WARN: delete existing codes, remove this if you don't need it + $yk -d $x oath accounts list -Hp $p | while {read -r y} { + $yk -d $x oath accounts delete -fp $p ${y/%$'\r'} + } + for y ("$oath[@]") { + $yk -d $x oath accounts uri -fp $p $y + echo Added $y + } +}