Help for this page

Select Code to Download


  1. or download this
    use strict;
    
  2. or download this
    use warnings;
    
  3. or download this
    Scalar value @hostname_short[0] better written as $hostname_short[0]
    
  4. or download this
    @hostname_short = split(/\./,$fqdn,2);
    
    my $hostname = "@hostname_short[0]";
    
  5. or download this
    my $hostname = (split /\./, $fqdn, 2)[0];