coreutils
[Top][All Lists]
Advanced

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

Re: Feature Request: 'du' command allow filter by user name


From: Pádraig Brady
Subject: Re: Feature Request: 'du' command allow filter by user name
Date: Mon, 9 Jan 2023 18:38:53 +0000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Thunderbird/109.0

On 09/01/2023 16:12, SCOTT FIELDS wrote:
Though not incredibly difficult to script, it would be useful to have 'du' 
allow a filter by 'user'.

AKA,

'du -user <user> <path>' to show only the files and usage for the specified 
user.

du isn't special in its filtering requirements here,
and we can pipe robustly from the standard file filter like:

  find -type f -user $USER -print0 |
  du --files0-from=-

So I don't think this would be appropriate to add to du.

cheers,
Pádraig



reply via email to

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