Help for this page

Select Code to Download


  1. or download this
    $hostname = `/bin/hostname`;
    
  2. or download this
    sub getHostname {
       return `/bin/hostname`;
    ...
    
    my $hostname = getHostname;
    print "hostname: $hostname\n";