1
0
mirror of https://github.com/rricharz/Tek4010.git synced 2026-01-11 23:53:16 +00:00

28 lines
452 B
Bash
Executable File

#!/bin/bash
# idemo, run with tek4010 to display ICEMD vector data
# rricharz 2019
wait1s() {
# let tek4010 wait 2 seconds (not this script, which just shuffles stuff into the buffer!)
for i in {1..30}
do
printf '\007'
done
}
while true
do
for filename in pltfiles/ICEMD_pltfiles/*.plt
do
# erase screen
printf '\033\014'
printf '<033:'
echo tek4010 is displaying "$filename"
cat "$filename"
wait1s
done
done