I need some help tweaking my code to look for another attribute in this unix df output:
df
Ex.
Filesystem Size Used Avail Capacity
foreach my $device ( @df ) { next unless $device =~ m{^/}; my( $filesystem, $size, $used, $avail, $cap, $mounted ) = split /\s+/, $device; # you take it from there.... ;) }