APG v1.2.12
This commit is contained in:
10
perl/apgcli.pl
Executable file
10
perl/apgcli.pl
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/usr/bin/perl -w
|
||||
$host = "localhost";
|
||||
use IO::Socket;
|
||||
$remote = IO::Socket::INET->new(
|
||||
Proto => "tcp",
|
||||
PeerAddr => $host,
|
||||
PeerPort => "pwdgen(129)",
|
||||
)
|
||||
or die "cannot connect to pwdgen port at $host";
|
||||
while ( <$remote> ) { print }
|
||||
Reference in New Issue
Block a user