Hacker News new | ask | show | jobs
by Borborygymus 11 days ago
> Or maybe you pipe into xargs and pray your filenames don’t have spaces

Or maybe use: `find ... -print0 | xargs -0 ...`

I guess you're still hoping your filenames don't contain an ASCII NUL, although that's a fairly reasonable assumption for all but the most paranoid use-cases.