- or download this
$root = $mysystem->root;
$proc = $root->{'proc'};
print "Uptime is ", $proc->{'uptime'}[0], "\n";
- or download this
$passwd = $root->{'etc'}->{'passwd'};
$spool = $root->{'var'}->{'spool'};
- or download this
$line = $root->{'etc'}->{'passwd'}[0] # First line of passwd file
@names = $root->{'var'}->{'spool'}; # List of files/dirs
- or download this
$proc->{'/var'}
- or download this
$proc->{'/var'}[0]