/ Published in: Bash
spaces in filenames breaks for loops on 'find' results
Expand |
Embed | Plain Text
find . -print0 | while read -d $'\0' file; do echo "$file"; done
You need to login to post a comment.
rowntreerob on 01/27/10
1 person have marked this snippet as a favorite
spaces in filenames breaks for loops on 'find' results
find . -print0 | while read -d $'\0' file; do echo "$file"; done
You need to login to post a comment.