mirror of
https://github.com/samuelncui/yatm.git
synced 2026-01-04 04:04:03 +00:00
8 lines
207 B
Bash
Executable File
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
|