7 lines
187 B
Bash
Executable File
7 lines
187 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
local LINKDIR="$HOME/.cache/mu/results"
|
|
mu find --clearlinks --format=links --linksdir=$LINKDIR "$@"
|
|
mutt -F $HOME/.mutt/rc-account-private -f $LINKDIR
|
|
rm -rf $LINKDIR;
|