• Since you double quoted this, it will not word split, and the loop will only run once.
  • Problematic code:
  • Correct code:
  • Loop over each line without globbing (hello world, My *.png)
  • Loop over each word with globbing (hello, world, My, file.png, My cat.png):
  • Loop over each line with globbing (hello world, My cat.png)
  • Rationale:
  • Exceptions