Created
January 6, 2012 17:21
-
-
Save jjarmoc/1571540 to your computer and use it in GitHub Desktop.
Quoted Printable encode/decode bash aliases - suitable for pipelining
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To decode: | |
# qp -d string | |
# To encode: | |
# qp string | |
alias qpd='perl -MMIME::QuotedPrint -pe '\''$_=MIME::QuotedPrint::decode($_);'\''' | |
alias qpe='perl -MMIME::QuotedPrint -pe '\''$_=MIME::QuotedPrint::encode($_);'\''' | |
function qp { | |
if [[ "$1" = "-d" ]] | |
then | |
echo ${@:2} | qpd | |
else | |
echo ${@} | qpe | |
fi | |
} |
the perl version can be much simple:
qp () {
perl -MMIME::QuotedPrint -s -ne '
BEGIN { *e = $d ? \&decode_qp : \&encode_qp }
print e $_
' -- "$@"
}
qp /etc/hostname - /etc/hostname <<< ∀✓ | qp -d
qprint --decode
and qprint --encode
are easy to use.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Hubro: this should be the accepted answer!
(oh wait, I'm not on stackoverflow?)