portable openfile
This commit is contained in:
parent
e4794af679
commit
55e3bb683c
@ -1,9 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Helps open a file with xdg-open from mutt in a external program without weird side effects.
|
# 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"
|
[ $(uname) = "Darwin" ] && opener="open" || opener="setsid xdg-open"
|
||||||
base=$(basename "$1")
|
mkdir -p "/tmp/$USER-mutt-tmp"
|
||||||
ext="${base##*.}"
|
file="/tmp/$USER-mutt-tmp/$(basename "$1")"
|
||||||
file=$(mktemp -u --suffix=".$ext")
|
|
||||||
rm -f "$file"
|
rm -f "$file"
|
||||||
cp "$1" "$file"
|
cp "$1" "$file"
|
||||||
$opener "$file" >/dev/null 2>&1 &
|
$opener "$file" >/dev/null 2>&1 &
|
||||||
|
Loading…
Reference in New Issue
Block a user