home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / apache / files / ActivePerl-5.6.1.638-MSWin32-x86.msi / _32cd929b8d0718ccc2edad859a238a8d < prev    next >
Encoding:
Text File  |  2004-04-13  |  107 b   |  9 lines

  1. #!/usr/bin/perl
  2.  
  3. use MIME::Base64 qw(decode_base64);
  4.  
  5. while (<>) {
  6.     print decode_base64($_);
  7. }
  8.  
  9.