Skip to content

Instantly share code, notes, and snippets.

@nicdoye
Created July 27, 2017 10:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicdoye/d90a8fe2e009fe5041739bf7e3243ed8 to your computer and use it in GitHub Desktop.
Save nicdoye/d90a8fe2e009fe5041739bf7e3243ed8 to your computer and use it in GitHub Desktop.
Finding your IP in Perl
#!/usr/bin/env perl
use strict;
use warnings;
use feature qw/say/;
use WebService::IFConfig::Client;
my $client = WebService::IFConfig::Client->new();
say $client->get_ip;'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment