Help for this page

Select Code to Download


  1. or download this
    use Sys::Hostname;
    my $hostname = hostname();
    
    my $ip = gethostbyname($hostname);
    
  2. or download this
    use POSIX qw( uname );
    
    my $hostname = (uname())[1];
    
    # the rest as above