Handle Filenames with Spaces Properly in Bash Loops
find ~ -name '* *' | while read FILE
do
echo "$FILE rocks."
done
via Handling Filenames with Spaces in Bash
find ~ -name '* *' | while read FILE
do
echo "$FILE rocks."
done
via Handling Filenames with Spaces in Bash