Advertisement
goebelmasse

»Quoted Printable« in Text umcodieren

Jul 1st, 2024
944
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.36 KB | None | 0 0
  1. #!/usr/bin/perl
  2. ########################################################################
  3. #
  4. # qpdecode
  5. # Decode quoted printable as used in email-
  6. #
  7. # $Id: qpdecode,v 1.1 2022/08/18 09:10:57 elias Exp $
  8. #
  9. ########################################################################
  10.  
  11. use strict;
  12. use warnings;
  13. use MIME::QuotedPrint;
  14.  
  15. $/="";
  16. print decode_qp(<>);
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement