Files
Initialisation/test/test4.sh
2024-03-29 11:15:08 +01:00

11 lines
145 B
Bash

#!/bin/bash
# Boucle pendant 10 secondes
SECONDS=0
while [ $SECONDS -lt 2 ]; do
echo "test4"
sleep 1
done
# Quitter le programme
exit 0