mirror of
https://github.com/leahneukirchen/mblaze
synced 2024-11-11 13:10:32 +00:00
12 lines
162 B
Bash
Executable File
12 lines
162 B
Bash
Executable File
#!/bin/sh
|
|
# mpeek - wrapper around mscan with a different seq
|
|
|
|
export MAILSEQ=$HOME/.mblaze/peek.seq
|
|
|
|
if [ -t 0 ]; then
|
|
mseq "$@"
|
|
else
|
|
mseq -S | mscan "$@"
|
|
fi
|
|
|