- or download this
($rad) = $telobj -> cmd ("cd /usr/local/etc/httpd/logs");
- or download this
($rad) = $telobj->("pwd");
if($rad eq '/usr/local/etc/httpd/logs') {
...
} else {
print "cd command failed. working directory is $rad\n";
}
- or download this
($rad) = $telobj -> cmd ("cd /usr/local/etc/httpd/logs");
if($rad) {
die "Can't change directory: $rad\n";
}