Categories: General

Effort vs. Outcome

clock-fleur-de-lisclock-fleur-de-lis

There is a bit of a debate in some circles about using xargs vs. the -exec
{} option that’s built into find itself. To me, however, it’s not much of a
debate; -exec isn’t nearly as good as xargs for what I use find for. I tend
to use it to perform tasks involving many files. “Move all these files
there”, “copy all those directories there”, “Delete these links.”, etc.

That’s all nice and stuff, but you probably want to see it in action, right?
Let’s run some numbers. Below is a listing of 1,668 .jpg files on my OS X
system using both -exec and xargs:

time find . -name "*.jpg" -exec ls {} ;

real 0m6.618s user 0m1.465s sys 0m4.396s

Hmm, that’s not bad — seven seconds for over around 1,600 files, right?
Let’s try it with xargs.

# time find . -name "*.jpg" -print0 | xargs -0 ls
real    0m1.120s
user    0m0.594s
sys     0m0.527s

That’s one (1) second vs seven (7) seconds. Seriously; xargs is the way to
go.

Gerald Businge

Leave a Comment
Share
Published by
Gerald Businge

Recent Posts

Betrayal in the City by Francis Imbuga

1. Introduction to the Text Title: Betrayal in the City Author: Francis Imbuga (Kenya) Genre:…

2 months ago

The Moon also sets by Osi Ogbu

Brief Context Author & Publication: Written by Nigerian author Osita (Osi) Ogbu, the novel was…

2 months ago

Meet Musinguzi John Paul – Your AI Teacher of Christian Religious Education for O-Level in Uganda

Step into a deeper understanding of faith, values, and biblical truth with Musinguzi John Paul,…

2 months ago

Meet Mbabazi Bridget – Your AI Teacher of Entrepreneurship for O-Level in Uganda

Are you ready to unlock your business potential and become a future innovator, job creator,…

2 months ago

Meet Alinda Violet – Your AI Agriculture Teacher for O-Level in Uganda!

Step into the future of farming, food security, and environmental stewardship with Alinda Violet, your…

2 months ago

Meet Aheebwa Joseph – Your AI Mathematics Teacher for O-Level Uganda!

Welcome to the world of numbers, logic, and problem-solving with Aheebwa Joseph, your intelligent and…

2 months ago