- or download this
Machine hardware: sun4u
OS version: 5.8
...
#print "Hostname: $hostname\n";
return 0;
}
- or download this
perl hostname.pl
hostname: not defined
*****
correct_UNIX_box_name
****
- or download this
sub getHostname {
$hostname = system "/bin/hostname";
print "Hostname: ", $hostname, "\n";
return 0;
}
- or download this
perl hostname.pl
hostname: not defined
...
correct_UNIX_box_name
Hostname: 0
****
- or download this
print "Hostname: ";
getHostname;
...
system "/bin/hostname";
return 0;
}
- or download this
Hostname:
- or download this
correct_UNIX_box_name
- or download this
perl hostname.pl
hostname: not defined
*****
correct_UNIX_box_name
Hostname: ****