ソースを参照

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

読み込み中…
キャンセル
保存