summaryrefslogtreecommitdiff
path: root/by_os/Darwin/mutt/.mutt/open-in-safari
blob: 0e122f5c7bb64e669d16508c5c3cbb8d67d13f4f (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

cp $1 $1.copy.html
( open -a Safari "$1.copy.html";
sleep 30;
rm -f "$1.copy.html";
) &