Files
yatm/scripts/readinfo
Samuel N Cui 852cf8212e feat: job list
2023-08-29 18:02:57 +08:00

8 lines
207 B
Bash
Executable File

#!/usr/bin/env bash
set -ex;
# SG_DEVICE=`sg_map | grep ${DEVICE} | awk '{print $1}'`
BARCODE=`./lto-info -f /dev/nst0 | grep 'Barcode' | awk '{print $3}'`
echo "{\"barcode\": \"$BARCODE\"}" > $OUT
sleep 3