소스 검색

open files with mac

tags/v3.1
Luke Smith 7 년 전
부모
커밋
123351045e
No known key found for this signature in database GPG 키 ID: 4C50B54A911F6252
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      bin/openfile

+ 2
- 1
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 &

불러오는 중...
취소
저장