Comment on Top Unix Command Line UtilitiesparentComments−decklin13yMaybe you are confusing this with what happens when you do for i in `find -name '*.mp4'`; do # ... or similar. In that case, the output of `find` is indeed split first, and `for` sees "foo", "bar.mp4", and so on.−stiff13yAh yes, you are right, thanks!
Comments
Maybe you are confusing this with what happens when you do
or similar. In that case, the output of `find` is indeed split first, and `for` sees "foo", "bar.mp4", and so on.Ah yes, you are right, thanks!