Em Seg 14 Nov 2005 14:00, Felipe Augusto van de Wiel escreveu: > > I have to try with command line, but I'm not sure how > to encode the base64... any ideas/tips to save google time? :) >
------------------- #!/usr/bin/perl use MIME::Base64; print "String: "; my $string = <STDIN>; $encoded = encode_base64($string); print "$encoded\n"; --------------------------- cheers
