mirror of
https://github.com/leahneukirchen/mblaze
synced 2024-11-03 15:40:32 +00:00
ca8cef1660
As a side benefit, all callers of blaze822_home_file need only pass the filename, so the base directory is set in only one place.
12 lines
173 B
Bash
Executable File
12 lines
173 B
Bash
Executable File
#!/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
|
|
|