On Thu, Jan 13, 2011 at 06:36:36PM -0600, Derek Martin wrote: > On Thu, Jan 13, 2011 at 06:28:14PM -0600, Derek Martin wrote: > > On Thu, Jan 13, 2011 at 05:56:05PM -0600, Will Fiveash wrote: > > > I've been wanting to filter a message that is in quoted-printable format > > > to and convert it plain text. Anyone know of a way I can do this that > > > is suitable for a Unix-style filter? > > > > > > > I believe this should do it (untested): > > And, FWIW, the equivalent python: > > -=-=-=- > #!/usr/bin/python > import sys, quopri > quopri.decode(sys.stdin,sys.stdout) > -=-=-=-
Thanks, I just tried that and it works. Good to know. -- Will Fiveash Oracle Austin, TX, USA
