You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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
|