This commit is contained in:
Joe Tretter
2022-09-04 13:23:53 -05:00
commit 2255def7aa
5 changed files with 850 additions and 0 deletions

11
Decoder/decodeAllFiles.sh Normal file
View File

@@ -0,0 +1,11 @@
#/bin/bash
ls input/ | sort | while read f;do
dta=$(zbarimg --raw --nodbus input/$f)
chunkNum=${dta/|*/}
chunkData=${dta/*|/}
echo ${chunkNum}
# >> output.dat
done