Explorar el Código

Merge pull request #832 from jakubkaczor/master

Hard link the file instead of copying
tags/v3.3
Luke Smith hace 2 años
committed by GitHub
padre
commit
c912f3d655
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      bin/openfile

+ 1
- 1
bin/openfile Ver fichero

@@ -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

Cargando…
Cancelar
Guardar