Selaa lähdekoodia

Merge pull request #832 from jakubkaczor/master

Hard link the file instead of copying
tags/v3.3
Luke Smith 2 vuotta sitten
committed by GitHub
vanhempi
commit
c912f3d655
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      bin/openfile

+ 1
- 1
bin/openfile Näytä tiedosto

@@ -5,6 +5,6 @@ tempdir="${XDG_CACHE_HOME:-$HOME/.cache}/mutt-wizard/files"
file="$tempdir/$(basename "$1")"
[ "$(uname)" = "Darwin" ] && opener="open" || opener="setsid -f xdg-open"
mkdir -p "$tempdir"
cp -f "$1" "$file"
ln "$1" "$file"
$opener "$file" >/dev/null 2>&1
find "${tempdir:?}" -mtime +1 -type f -delete

Ladataan…
Peruuta
Tallenna