8 lines
77 B
Bash
8 lines
77 B
Bash
until [ 1 ]
|
|
do
|
|
echo LOOP1
|
|
until [ 1 ]
|
|
do
|
|
echo hello
|
|
done
|
|
done > file1
|