programming-examples/perl/Network/Get system host name.pl

8 lines
107 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!/usr/bin/perl -w
use Sys::Hostname;
$host = hostname();
print "Network host name is: $host\n";