bug-fileutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: du doesn't take stdin


From: Richard Dawe
Subject: Re: du doesn't take stdin
Date: Sun, 14 Sep 2003 20:13:36 +0100

Hello.

Dan Heller wrote:
> 
> Is this an oversight or omission?
> I want to do:
> $ locate .jpg | sed [...] | du -c -b

Why should du read a list of files on stdin?

You can use xargs to convert stdin to a list of parameters:

    locate .jpg | sed [...] | xargs du -c -b

xargs comes with GNU findutils.

Regards,

-- 
Richard Dawe [ http://www.phekda.freeserve.co.uk/richdawe/ ]




reply via email to

[Prev in Thread] Current Thread [Next in Thread]