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