done
statement SH-1061Detected a do
statement without a corresponding done
statement.
Please check that the done
exists, and that it correctly matches the indicated do
.
yes() {
while echo "y"
do
true
}
yes() {
while echo "y"
do
true
done
}