about summary refs log tree commit diff
path: root/mquote
blob: 1a68f50869244893c8faea00062629454d7b159c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# mquote MSG - format MSG as a quotation

: ${from=$(mhdr -d -h x-original-from "$1")}
: ${from=$(mhdr -d -h from "$1")}
: ${from=Someone}

echo "$from wrote:"
mshow -R "$1" |
	sed -n '/^-- $/!p;//q' |                   # strip signature
	sed -e :a -e '/^\n*$/{$d;N;ba' -e '}' |    # strip empty lines
	sed 's/^/> /'                              # prefix with >