Help for this page

Select Code to Download


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