mirror of
https://github.com/modelec/Initialisation.git
synced 2026-01-19 00:07:20 +01:00
11 lines
145 B
Bash
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 |