mirror of
https://github.com/modelec/Initialisation.git
synced 2026-01-18 15:57:20 +01:00
10 lines
134 B
Bash
10 lines
134 B
Bash
#!/bin/bash
|
|
|
|
# Boucle pendant 10 secondes
|
|
SECONDS=0
|
|
while [ $SECONDS -lt 10 ]; do
|
|
echo "test4"
|
|
done
|
|
|
|
# Quitter le programme
|
|
exit 0 |