blob: 529b31fb76d42124dda14456d118b01b533ff6f0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# mpeek - wrapper around mscan with a different seq
export MAILSEQ=${MBLAZE:-$HOME/.mblaze}/peek.seq
if [ -t 0 ]; then
mseq "$@"
else
mseq -S | mscan "$@"
fi
|