Home | History | Annotate | Line # | Download | only in tools
fido2-detach.sh revision 1.1.1.2
      1      1.1  christos #!/bin/sh
      2      1.1  christos 
      3      1.1  christos # Copyright (c) 2020 Yubico AB. All rights reserved.
      4      1.1  christos # Use of this source code is governed by a BSD-style
      5      1.1  christos # license that can be found in the LICENSE file.
      6  1.1.1.2  christos # SPDX-License-Identifier: BSD-2-Clause
      7      1.1  christos 
      8      1.1  christos DEV="$(fido2-token -L | sed 's/^\(.*\): .*$/\1/;q')"
      9      1.1  christos 
     10      1.1  christos while [ -n "${DEV}" ]; do
     11      1.1  christos 	sleep .5
     12      1.1  christos 	DEV="$(fido2-token -L | sed 's/^\(.*\): .*$/\1/;q')"
     13      1.1  christos done
     14