On Wed, Jan 7, 2015 at 10:54 PM, Dylan Cali <[email protected]> wrote: > Maybe I've misunderstood the problem but you can also accomplish this with: > > find -print0 | xargs -n3 -0 | split -l3
Actually I guess it should be -n1 find -print0 | xargs -n1 -0 | split -l3
