Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^5: <p>Directory used % in Linux </p>

by FloydATC (Deacon)
on Feb 01, 2014 at 09:09 UTC ( [id://1072951]=note: print w/replies, xml ) Need Help??


in reply to Re^4: <p>Directory used % in Linux </p>
in thread Directory used % in Linux

As I already pointed out, the "du" tool can help you with this by reporting directory sizes but you will have to calculate percentages yourself.

Here's an example that does pretty much what you describe, go ahead and hammer it into the shape you want:

#!/usr/bin/perl use strict; use warnings; my $dir = join(' ', map { '"'.$_.'"' } @ARGV) || "*"; # Use arguments +or default to pwd my @lines = qx(du -sc $dir); # Get sizes in bytes, with total my ($total) = split(/\s/, pop @lines); # Get total number of bytes foreach my $line (@lines) { if ($line =~ /(\d+)/) { printf("%6.2f%%\t%s", $1 * 100 / $total, $line); # Prefix % } }
-- FloydATC

Time flies when you don't know what you're doing

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-19 14:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found