11 lines
85 B
Bash
Executable file
11 lines
85 B
Bash
Executable file
echo "debut script"
|
|
|
|
do
|
|
|
|
while [ 1 ]
|
|
do
|
|
sleep 1
|
|
echo "a"
|
|
done
|
|
|
|
echo "fin script"
|