freebsd-dev/contrib/libfido2/tools/fido2-attach.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
294 B
Bash
Raw Normal View History

2021-10-01 23:52:55 +00:00
#!/bin/sh
# Copyright (c) 2020 Yubico AB. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
DEV=""
while [ -z "${DEV}" ]; do
sleep .5
DEV="$(fido2-token -L | sed 's/^\(.*\): .*$/\1/;q')"
done
printf '%s\n' "${DEV}"