mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 15:45:12 -04:00
10 lines
152 B
Perl
10 lines
152 B
Perl
#!/usr/bin/perl
|
|
|
|
use MIME::Base64 qw(encode_base64);
|
|
|
|
my $buf;
|
|
while(read(STDIN, $buf, 60*57)) {
|
|
my $enc = encode_base64($buf);
|
|
print "$enc";
|
|
}
|