#!/bin/sh# Helps open a file with xdg-open from mutt in a external program without weird side effects.tempdir="${XDG_CACHE_HOME:-$HOME/.cache}/mail/files"file="$tempdir/$(basename "$1")"opener="setsid -f xdg-open"
mkdir -p "$tempdir"
cp -f "$1""$file"$opener"$file" >/dev/null 2>&1
find "${tempdir:?}" -mtime +1 -type f -delete