Why Nostr? What is Njump?
2025-01-21 17:36:13
in reply to

Tim Chase on Nostr: nprofile1q…r93qq Seconding nprofile1q…xehlq's suggestion. You might need ...

Seconding 's suggestion. You might need `-maxdepth` to prevent it from recursing deeper if that's an issue.

Or you can send results of the find(1) to xargs(1) or GNU parallel(1) like

$ find $LOCATION -type f -name '*.txt' -print0 | xargs -0 -L1 mycommand

which can spawn multiple processes if that could speed things up.
Author Public Key
npub1n507nu5u0g0yy3jv8xzlwxzluyft9ps5p5etskrd6dxxlykkm8hqtucr3d