Files
apg/perl/apgcli.pl
Adel I. Mirzazhanov c777362a38 APG v1.2.12
2023-07-12 10:47:12 +02:00

11 lines
252 B
Raku
Executable File

#!/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 }