Преглед на файлове

Force hard linking the file

It was forgotten to add `-f` (force) option for `ln` in
95687867d1. This enables opening files
with the same names, but different contents, with a new NeoMutt
instance, after the previous is closed.
tags/v3.3
Jakub Kaczor преди 2 години
родител
ревизия
c7524bdd96
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. +1
    -1
      bin/openfile

+ 1
- 1
bin/openfile Целия файл

@@ -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"
ln "$1" "$file"
ln -f "$1" "$file"
$opener "$file" >/dev/null 2>&1
find "${tempdir:?}" -mtime +1 -type f -delete

Зареждане…
Отказ
Запис