Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

perlio::via::quotedprint5.18(3pm) [mojave man page]

PerlIO::via::QuotedPrint(3pm)				 Perl Programmers Reference Guide			     PerlIO::via::QuotedPrint(3pm)

NAME
PerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings SYNOPSIS
use PerlIO::via::QuotedPrint; open( my $in, '<:via(QuotedPrint)', 'file.qp' ) or die "Can't open file.qp for reading: $! "; open( my $out, '>:via(QuotedPrint)', 'file.qp' ) or die "Can't open file.qp for writing: $! "; VERSION
This documentation describes version 0.07. DESCRIPTION
This module implements a PerlIO layer that works on files encoded in the quoted-printable format. It will decode from quoted-printable while reading from a handle, and it will encode as quoted-printable while writing to a handle. REQUIRED MODULES
MIME::QuotedPrint (any) SEE ALSO
PerlIO::via, MIME::QuotedPrint, PerlIO::via::Base64, PerlIO::via::MD5, PerlIO::via::StripHTML, PerlIO::via::Rotate. ACKNOWLEDGEMENTS
Based on example that was initially added to MIME::QuotedPrint.pm for the 5.8.0 distribution of Perl. COPYRIGHT
Copyright (c) 2002, 2003, 2004, 2012 Elizabeth Mattijsen. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.18.2 2013-11-04 PerlIO::via::QuotedPrint(3pm)

Check Out this Related Man Page

PerlIO::via::QuotedPrint(3pm)				 Perl Programmers Reference Guide			     PerlIO::via::QuotedPrint(3pm)

NAME
PerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings SYNOPSIS
use PerlIO::via::QuotedPrint; open( my $in, '<:via(QuotedPrint)', 'file.qp' ) or die "Can't open file.qp for reading: $! "; open( my $out, '>:via(QuotedPrint)', 'file.qp' ) or die "Can't open file.qp for writing: $! "; VERSION
This documentation describes version 0.07. DESCRIPTION
This module implements a PerlIO layer that works on files encoded in the quoted-printable format. It will decode from quoted-printable while reading from a handle, and it will encode as quoted-printable while writing to a handle. REQUIRED MODULES
MIME::QuotedPrint (any) SEE ALSO
PerlIO::via, MIME::QuotedPrint, PerlIO::via::Base64, PerlIO::via::MD5, PerlIO::via::StripHTML, PerlIO::via::Rotate. ACKNOWLEDGEMENTS
Based on example that was initially added to MIME::QuotedPrint.pm for the 5.8.0 distribution of Perl. COPYRIGHT
Copyright (c) 2002, 2003, 2004, 2012 Elizabeth Mattijsen. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.18.2 2013-11-04 PerlIO::via::QuotedPrint(3pm)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

removing non-printable chars from multiple files

How do I remove non-printable characters from all txt files and output the results to one file? I've tried the following: tr -cd '\n' < *.txt > out.txt and it gives ambiguous redirect error. How can I get it to operate on all txt files in the current directory and append the output to... (1 Reply)
Discussion started by: revax
1 Replies

2. Shell Programming and Scripting

Problem writing to different files

Hello: I have the following code: ---------------------------------- open (OUTPUT_FILE, ">>/usr/users/rovolis/PREPAID/CC/TCG/PP.$cyear$cmonth$cday.txt")||die "$!"; 82 open (OUTPUT_FILE2, ">>/usr/users/rovolis/PREPAID/CC/TCG/PR.$cyear$cmonth$cday.txt")||die "$!"; 83 # ... (0 Replies)
Discussion started by: chriss_58
0 Replies

3. Shell Programming and Scripting

Duplicate rows in CSV files based on values

I am new to this forum and this is my first post. I am looking at an old post with exactly the same name. Can not paste URL because I do not have 5 posts My requirement is exactly opposite. I want to get rid of duplicate rows and try to append the values of columns in those rows ... (10 Replies)
Discussion started by: vbhonde11
10 Replies

4. Shell Programming and Scripting

How to ignore quoted separators

Hi, I'm trying to parse a text file which uses commas as field separators. Fields are double quoted, and may themselves contain commas, like this: "1","John Smith","London","123" "2","Mary Robertson","Horsham, Sussex","456" This causes problems for the following command cut -d","... (7 Replies)
Discussion started by: sven44
7 Replies