below is a snip of a script that is to monitor disk usage, and I want to
format the output in a fashion
like this : 

___usage_in_bytes___\t___directory_name___

the problem being that I can't find out what the formatting characters
mean in any of my books here.
Can anyone explain them ??

Thanks!

snip 
--------------------------------------------
foreach $directory (@dirs) {
        $count++;
        if (($directory eq ".")||($directory eq "..")) {next;}
        print(".");
        $command="diruse " . $dir . "\\" . $directory . " /m /q:100 /l
/d"; 
        $output=`$command`;
        print FILE $output;
}

-----------------------------------------------

Scott Lutz
technical support
Pacific Online
http://www.paconline.net



--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to