diff options
author | Leah Neukirchen <leah@vuxu.org> | 2017-03-26 20:44:10 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2017-03-26 20:44:10 +0200 |
commit | 6d492539d61b40137c6c863e21e3fa95c2bd2150 (patch) | |
tree | 333d782d75fb9fa742dfc1ca5f04f2028a9aed73 | |
parent | f771d062a5406820984bce90ad45d0f783ff96bf (diff) | |
download | mblaze-6d492539d61b40137c6c863e21e3fa95c2bd2150.tar.gz mblaze-6d492539d61b40137c6c863e21e3fa95c2bd2150.tar.xz mblaze-6d492539d61b40137c6c863e21e3fa95c2bd2150.zip |
mquote: use printf
-rwxr-xr-x | mquote | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mquote b/mquote index 440a3ef..a64000d 100755 --- a/mquote +++ b/mquote @@ -5,7 +5,7 @@ : ${from:=$(mhdr -d -h from "$1")} : ${from:=Someone} -echo "$from wrote:" +printf '%s wrote:\n' "$from" mshow -R "$1" | sed -n '/^-- $/!p;//q' | # strip signature sed -e :a -e '/^\n*$/{$d;N;ba' -e '}' | # strip empty lines |