Bash Scripting - Loops
What will be the output of this script if the current directory contains files: a.txt, b.txt, and c.log?
for f in *.txt; do echo "$f"; donefor f in *.txt; do echo "$f"; done15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions