mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 07:11:01 +00:00
7 lines
69 B
Bash
Executable file
7 lines
69 B
Bash
Executable file
#!/bin/sh
|
|
|
|
while true
|
|
do
|
|
echo $((1 + $RANDOM % 10))
|
|
sleep 1
|
|
done
|