9 lines
120 B
Bash
Executable file
9 lines
120 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "Usage: $(basename "$0") <folder>" >&2
|
|
exit 1
|
|
fi
|
|
mutt -R -f "$1"
|