On Sat, Oct 14, 2017 at 3:08 AM, Andreas Kusalananda Kähäri <andreas.kah...@icm.uu.se> wrote: > find . -type f -mtime -1 \ > -exec grep -q -E 'pattern1' {} ';' \ > -exec shasum {} +
That's cute, but it winds up spinning up a process for every file (actually, in your example, two processes for every file). I generally want to avoid doing that. Thanks though, -- Raul