/ Published in: Bash
spaces in filenames breaks for loops on 'find' results
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
find . -print0 | while read -d $'\0' file; do echo "$file"; done