Updated Sc2044 (markdown)

koalaman
2014-05-08 19:38:18 -07:00
parent 95994cd162
commit 01c6880f7e

@@ -1,3 +1,5 @@
## For loops over find output are fragile. Use find -exec or a while read loop.
It is difficult to correctly use "find" in a for loop, because filenames can contain bytes such as newlines and "*". Where practical, consider using find's "-exec" like this:
find . -exec COMMAND... {} \;