Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    use Sys::Hostname;
    
    print "I am running on:". hostname .", thank you and goodnight\n";
    
  2. or download this
    use strict;
    use warnings;
    ...
    
    my $host = hostname;
    print "I am running on: $host, thank you and goodnight\n";