Luke Smith
5 yıl önce
ebeveyn
işleme
123351045e
Veri tabanında bu imza için bilinen anahtar bulunamadı
GPG Anahtar Kimliği: 4C50B54A911F6252
1 değiştirilmiş dosya ile
2 ekleme ve
1 silme
-
bin/openfile
|
|
@@ -1,8 +1,9 @@ |
|
|
|
#!/bin/sh |
|
|
|
# Helps open a file with xdg-open from mutt in a external program without weird side effects. |
|
|
|
[ $(uname) = "Darwin" ] && opener="open" || opener="setsid xdg-open" |
|
|
|
base=$(basename "$1") |
|
|
|
ext="${base##*.}" |
|
|
|
file=$(mktemp -u --suffix=".$ext") |
|
|
|
rm -f "$file" |
|
|
|
cp "$1" "$file" |
|
|
|
setsid xdg-open "$file" >/dev/null 2>&1 & |
|
|
|
$opener "$file" >/dev/null 2>&1 & |