mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-28 05:51:40 +00:00

This allows us to watch the output of a flashing tool and screen-scrape the progress completion.
11 lines
183 B
Bash
Executable File
11 lines
183 B
Bash
Executable File
#/bin/sh
|
|
echo "this is a test"
|
|
sleep 1
|
|
echo "this is another line1"
|
|
echo "this is another line2"
|
|
echo "this is another line3"
|
|
echo "this is another line4"
|
|
sleep 1
|
|
echo "done!"
|
|
exit 0
|