13 lines
211 B
Bash
13 lines
211 B
Bash
#!/bin/sh
|
|
|
|
# Description: Show contents of a Maildir message in pager
|
|
#
|
|
# Dependencies: mblaze
|
|
#
|
|
# Shell: POSIX compliant
|
|
# Author: John McQuah
|
|
|
|
if [ -f "$1" ]; then
|
|
mshow -n -A 'text/html' ./"$1" | less
|
|
fi
|