in reply to Re: Newline Delimited Input
in thread Newline Delimited Input
Here is the part I took out:
#Displays total size of specified path (total includes subfolders) foreach my $dir (@parts) { my $total; print "\nWalking $dir\n"; find(sub { $total += -s }, $dir); $total = ($total / 1024) / 1024; $total = sprintf("%0.2f", $total); print OUT "$dir, $total, mb, \n"; } print "\n\tOutput created.\n"; close(OUT);
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Newline Delimited Input
by CukiMnstr (Deacon) on Jun 11, 2003 at 07:07 UTC | |
by Anonymous Monk on Jun 11, 2003 at 13:11 UTC |
In Section
Seekers of Perl Wisdom