diff options
author | Jakub Kaczor <jakubk0.kaczor@gmail.com> | 2022-04-09 17:52:52 +0200 |
---|---|---|
committer | Jakub Kaczor <jakubk0.kaczor@gmail.com> | 2022-04-09 19:06:55 +0200 |
commit | c7524bdd964b195ef67c40c38aba4e0501af24ef (patch) | |
tree | 517e6cf7b2340190c5ab88481b308791fb76ed00 | |
parent | c912f3d655195dd7f979a96e483d57261b613c62 (diff) |
Force hard linking the file
It was forgotten to add `-f` (force) option for `ln` in
95687867d1795299625e1e3dc5cdc412155de879. This enables opening files
with the same names, but different contents, with a new NeoMutt
instance, after the previous is closed.
-rwxr-xr-x | bin/openfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/openfile b/bin/openfile index 5a250dc..a351f75 100755 --- a/bin/openfile +++ b/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 |