2022-05-11 16:20:23 +08:00

10 lines
116 B
Bash

#!/bin/bash
for ((j=1;j<=10;j++))
do
echo "$j"
if (( $j < 3 ))
then
sleep 1
fi
done