Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/perl
- ########################################################################
- #
- # qpdecode
- # Decode quoted printable as used in email-
- #
- # $Id: qpdecode,v 1.1 2022/08/18 09:10:57 elias Exp $
- #
- ########################################################################
- use strict;
- use warnings;
- use MIME::QuotedPrint;
- $/="";
- print decode_qp(<>);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement