td-filter: new operators: starts with and ends with
[hband-tools.git] / user-tools / mime-header-decode
blob63a0f5f9771133f74967cc851b7f7c3eedbfd336
1 #!/usr/bin/env perl
3 =pod
5 =head1 NAME
7 mime-header-decode - Decode MIME-encoded stream on stdin line-by-line
9 =cut
12 use Encode;
13 while(<STDIN>)
15 print encode("UTF-8", decode("MIME-Header", $_));