10 lines
109 B
Bash
Executable File
10 lines
109 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo "Usage: mail-sync <account name>"
|
|
exit 1
|
|
fi
|
|
|
|
mbsync "$1"
|
|
notmuch new
|