From 9bd78ccf02fc3dd0872f62b40b5919dff621acfd Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Wed, 23 Nov 2016 16:04:58 +0100 Subject: Revert "YOLO: deal with quoted-printable continuation lines, change the '=' at 1st lineend into a space character" This reverts commit 44018d5e21de5f42612b003b584c3b42b0a8dd2a. --- bin/email2irc.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'bin/email2irc.sh') diff --git a/bin/email2irc.sh b/bin/email2irc.sh index 33beea41..0871cab9 100755 --- a/bin/email2irc.sh +++ b/bin/email2irc.sh @@ -87,8 +87,7 @@ while read -r line ; do else # deal with quoted-printable continuation lines: 2nd line/time # if $MY_LINE ends with '=', then append the next line to $MY_LINE, - # changing the '=' to a single space. - MY_2ND_LINE=$(echo $MY_2ND_LINE | sed -s 's#=$# #') + # TODO: changing the '=' to a single space. MY_LINE="$MY_2ND_LINE $MY_LINE" debug123 "#5" MY_LINE $MY_LINE debug123 "#6" MY_2ND_LINE $MY_2ND_LINE -- cgit v1.2.3-54-g00ecf