10 lines
137 B
Bash
Executable file
10 lines
137 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
## Wizard Kit: HW Diagnostics - Progress
|
|
|
|
# Loop forever
|
|
while :; do
|
|
clear
|
|
echo -e "$(cat "$1")"
|
|
sleep 1s
|
|
done
|