13 lines
104 B
Bash
Executable file
13 lines
104 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "debut script"
|
|
|
|
do
|
|
|
|
while [ 1 ] ; [ 1 ]
|
|
do
|
|
sleep 1
|
|
echo "a"
|
|
done
|
|
|
|
echo "fin script"
|