diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-04 13:15:20 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-04 13:15:20 +0200 |
commit | 4718281aadf725f6dbd0b308123dca98af2f5edf (patch) | |
tree | b64ec4620bbf9176456c8426a524b07679bb2def /modules | |
parent | fix(modules/lf/commands/open): Explicitly use `handlr-regex` instead of `xdg-... (diff) | |
download | nixos-config-4718281aadf725f6dbd0b308123dca98af2f5edf.zip |
fix(modules/lf/commands/thrash_*): Support paths with spaces in them
Oherwise `./some thrash path` would not work.
Diffstat (limited to 'modules')
-rwxr-xr-x | modules/by-name/lf/lf/commands/scripts/trash_clear.sh | 4 | ||||
-rwxr-xr-x | modules/by-name/lf/lf/commands/scripts/trash_restore.sh | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/modules/by-name/lf/lf/commands/scripts/trash_clear.sh b/modules/by-name/lf/lf/commands/scripts/trash_clear.sh index faa3c553..a41dce27 100755 --- a/modules/by-name/lf/lf/commands/scripts/trash_clear.sh +++ b/modules/by-name/lf/lf/commands/scripts/trash_clear.sh @@ -1,8 +1,8 @@ # shellcheck shell=sh -while read -r file; do +while IFS="$(printf '\n')" read -r file; do set -- "$@" "$(pwd)/$file" -done <"$(conceal list | fzf --multi --ansi | awk '{for(i=3; i<=NF; i++) {print $i}}' | tmp)" +done <"$(conceal list | fzf --multi --ansi | awk '{$1="";$2=""; print $0}' | sed 's/^\s*//' | tmp)" [ "$#" -ne 0 ] && trash empty --match=exact "$@" diff --git a/modules/by-name/lf/lf/commands/scripts/trash_restore.sh b/modules/by-name/lf/lf/commands/scripts/trash_restore.sh index f685345f..5a7624db 100755 --- a/modules/by-name/lf/lf/commands/scripts/trash_restore.sh +++ b/modules/by-name/lf/lf/commands/scripts/trash_restore.sh @@ -9,9 +9,10 @@ fs="$fs" # shellcheck disable=SC2269 id="$id" -while read -r file; do +while IFS="$(printf '\n')" read -r file; do set -- "$@" "$(pwd)/$file" -done <"$(conceal list | fzf --multi --ansi | awk '{for(i=3; i<=NF; i++) {print $i}}' | tmp)" +done <"$(conceal list | fzf --multi --ansi | awk '{$1="";$2=""; print $0}' | sed 's/^\s*//' | tmp)" + [ "$#" -ne 0 ] && trash restore --match=exact "$@" # vim: ft=sh |