mirror of
https://github.com/go-acme/lego
synced 2026-03-14 14:35:48 +01:00
7 lines
66 B
Bash
Executable file
7 lines
66 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
for i in `seq 1 10`
|
|
do
|
|
echo $i
|
|
sleep 0.2
|
|
done
|