A pretty interesting writeup. A must-read if you don't know how to handle filenames with control characters (eg. newline) in them correctly. David wrote
another (even longer ) article on how to fix the problem of handling filenames by changing standards, operating systems and/or tools.
My choice from the proposed solutions is this one:
find . -print0 | while IFS="" read -r -d "" file; do
COMMAND "$file"
done
Recent comments
2 years 15 weeks ago
3 years 36 weeks ago
3 years 36 weeks ago
3 years 38 weeks ago
3 years 39 weeks ago
3 years 46 weeks ago
3 years 46 weeks ago
3 years 46 weeks ago
3 years 46 weeks ago
3 years 47 weeks ago