1
0
mirror of https://github.com/rricharz/Tek4010.git synced 2026-04-12 15:16:36 +00:00
Files
rricharz.Tek4010/demo.sh
¨Rene Richarz 8c1e87a4aa demo added
2019-04-02 13:06:14 +02:00

22 lines
333 B
Bash
Executable File

#!/bin/bash
# rricharz 2019
for filename in pltfiles/*.plt
do
# erase screen
printf '\033\014'
echo tek4010 is displaying "$filename"
cat "$filename"
# let tek4010 wait 5 seconds (not this script, which just shuffles stuff into the buffer!)
for i in {1..100}
do
printf '\007'
done
done