Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Files owned in a filesystem

by grinder (Bishop)
on May 31, 2002 at 14:58 UTC ( [id://170737]=CUFP: print w/replies, xml ) Need Help??

Ever found yourself staring at a deep filesystem and wondering which users own files in it? This little snippet will grovel through it and display a list of users, and the number of files that they own.

An alternative would be to count the bytes occupied by the files owned by a given person. In this case you would want to accumulate (stat $_)[7] instead. You might also then want to pretty print the bytes.

update: changed use of stat to lstat as per Merlyn's excellent suggestion. As it turns out, I was looking at a Samba share, and ordinary lusers can't create symlinks. Still, it's a good habit to get into.

#! /usr/bin/perl -w use strict; use File::Find; my %owned; find( sub { ++$owned{(lstat $_)[4]} unless $_ eq '.' or $_ eq '..' }, shift || '.' ); my %name; $name{$_} = (getpwuid $_)[0] || "[uid $_]" foreach keys %owned; print "$owned{$_}\t$name{$_}\n" foreach sort{ $name{$a} cmp $name{$b} } keys %owned;

Replies are listed 'Best First'.
•Re: Files owned in a filesystem
by merlyn (Sage) on May 31, 2002 at 15:50 UTC
    That should be lstat instead of stat, or else you'll count a symlinked file's size multiple times.

    And actually, you should use (lstat)[12], which accounts properly for holey files and indirect blocks, to give you a number like du instead of like adding up a bunch of ls -l values.

    -- Randal L. Schwartz, Perl hacker

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: CUFP [id://170737]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (7)
As of 2024-04-23 16:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found