2023-02-22 08:31:38 +01:00
|
|
|
#!/bin/sh
|
|
|
|
local LINKDIR="$HOME/.cache/mu/results"
|
2023-02-25 20:17:14 +01:00
|
|
|
mu find --clearlinks --format=links --linksdir=$LINKDIR "$@" \
|
|
|
|
&& mutt -F $HOME/.mutt/rc-account-private -f $LINKDIR
|
2023-02-22 08:31:38 +01:00
|
|
|
rm -rf $LINKDIR;
|