Source
1
-
#!/usr/bin/env perl
1
+
#!/usr/bin/perl
2
2
3
3
use strict;
4
4
use warnings;
5
5
use Getopt::Long;
6
6
use IO::Socket;
7
7
8
8
my $host = '127.0.0.1';
9
9
my $port = 10051;
10
10
my $input = '-';
11
11
my $output = '-';
#!/usr/bin/env perl
#!/usr/bin/perl
use strict;
use warnings;
use Getopt::Long;
use IO::Socket;
my $host = '127.0.0.1';
my $port = 10051;
my $input = '-';
my $output = '-';
Everything looks good. We'll let you know here if there's anything you should know about.