Return to Snippet

Revision: 23013
at January 27, 2010 18:44 by rowntreerob


Initial Code
find .  -print0 | while read -d $'\0' file; do echo "$file"; done

Initial URL


Initial Description
spaces in filenames breaks for loops on 'find' results

Initial Title
looping over file paths that contain spaces

Initial Tags


Initial Language
Bash