do.for file in *
echo "$file"
donefor file in *
do
echo "$file"
doneShellCheck has found a loop that appears to be missing a
do statement. In the problematic code, it was simply
forgotten.
Verify that the do exists, and that it's in the correct
place.
None
ShellCheck is a static analysis tool for shell scripts. This page is part of its documentation.