diff options
Diffstat (limited to '')
-rwxr-xr-x | hm/soispha/conf/lf/commands/scripts/archive | 2 | ||||
-rwxr-xr-x | hm/soispha/conf/lf/commands/scripts/chmod | 2 | ||||
-rwxr-xr-x | hm/soispha/conf/lf/commands/scripts/dragon | 2 | ||||
-rwxr-xr-x | hm/soispha/conf/lf/commands/scripts/dragon_individual | 2 | ||||
-rwxr-xr-x | hm/soispha/conf/lf/commands/scripts/dragon_stay | 2 | ||||
-rwxr-xr-x | hm/soispha/conf/lf/commands/scripts/trash | 2 | ||||
-rwxr-xr-x | hm/soispha/pkgs/scripts/apps/con2pdf | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/hm/soispha/conf/lf/commands/scripts/archive b/hm/soispha/conf/lf/commands/scripts/archive index e55e97a1..7459ee39 100755 --- a/hm/soispha/conf/lf/commands/scripts/archive +++ b/hm/soispha/conf/lf/commands/scripts/archive @@ -34,7 +34,7 @@ root="$(if [ "$(pwd)" = "/" ]; then pwd; else echo "$(pwd)/";fi)"; while read -r raw_file; do file="$(echo "$raw_file" | sed "s|$root||")"; set -- "$@" "$file"; -done < "$(tmp "echo '$fx'")"; +done < "$(tmp echo "$fx")"; case "$(awk '{for (i=1; i<=NF; i++) print $i}' "$archivers" | fzf)" in "gzip") diff --git a/hm/soispha/conf/lf/commands/scripts/chmod b/hm/soispha/conf/lf/commands/scripts/chmod index 71e03e3c..95703681 100755 --- a/hm/soispha/conf/lf/commands/scripts/chmod +++ b/hm/soispha/conf/lf/commands/scripts/chmod @@ -7,7 +7,7 @@ readp "Mode bits: " bits while read -r file; do chmod "$bits" "$file" -done < "$(tmp "echo $fx")" +done < "$(tmp echo "$fx")" lf -remote 'send reload' # vim: ft=sh diff --git a/hm/soispha/conf/lf/commands/scripts/dragon b/hm/soispha/conf/lf/commands/scripts/dragon index 0f828c23..7aa315be 100755 --- a/hm/soispha/conf/lf/commands/scripts/dragon +++ b/hm/soispha/conf/lf/commands/scripts/dragon @@ -5,7 +5,7 @@ SHELL_LIBRARY_VERSION="1.4.2" . %SHELL_LIBRARY_PATH while read -r file; do set -- "$@" "$file" -done < "$(tmp "echo '$fx'")" +done < "$(tmp echo "$fx")" dragon -a -x "$@" # vim: ft=sh diff --git a/hm/soispha/conf/lf/commands/scripts/dragon_individual b/hm/soispha/conf/lf/commands/scripts/dragon_individual index 92ce91ad..3a5a7bdc 100755 --- a/hm/soispha/conf/lf/commands/scripts/dragon_individual +++ b/hm/soispha/conf/lf/commands/scripts/dragon_individual @@ -5,7 +5,7 @@ SHELL_LIBRARY_VERSION="1.4.2" . %SHELL_LIBRARY_PATH while read -r file; do set -- "$@" "$file" -done < "$(tmp "echo '$fx'")" +done < "$(tmp echo "$fx")" dragon "$@" # vim: ft=sh diff --git a/hm/soispha/conf/lf/commands/scripts/dragon_stay b/hm/soispha/conf/lf/commands/scripts/dragon_stay index fdda1d15..cffda252 100755 --- a/hm/soispha/conf/lf/commands/scripts/dragon_stay +++ b/hm/soispha/conf/lf/commands/scripts/dragon_stay @@ -5,7 +5,7 @@ SHELL_LIBRARY_VERSION="1.4.2" . %SHELL_LIBRARY_PATH while read -r file; do set -- "$@" "$file"; -done < "$(tmp "echo '$fx'")" +done < "$(tmp echo "$fx")" dragon -a "$@" # vim: ft=sh diff --git a/hm/soispha/conf/lf/commands/scripts/trash b/hm/soispha/conf/lf/commands/scripts/trash index babe9870..5a0e3e24 100755 --- a/hm/soispha/conf/lf/commands/scripts/trash +++ b/hm/soispha/conf/lf/commands/scripts/trash @@ -8,7 +8,7 @@ expected_error_output=$(mktmp); while read -r file; do set -- "$@" "$file" -done < "$(tmp "echo '$fx'")" +done < "$(tmp echo "$fx")" # TODO: why are we using trashy at all, when trash-cli can do everything? # diff --git a/hm/soispha/pkgs/scripts/apps/con2pdf b/hm/soispha/pkgs/scripts/apps/con2pdf index ef1aaa14..d074931c 100755 --- a/hm/soispha/pkgs/scripts/apps/con2pdf +++ b/hm/soispha/pkgs/scripts/apps/con2pdf @@ -95,7 +95,7 @@ scan() { convert "$scanned_image_a" -compress jpeg -quality 100 "$name"_"$counter".pdf fi - done < "$(tmp "fd . '$tiff_temp_path' | sort -n")" + done < "$(tmp fd . "$tiff_temp_path" "|" sort -n)" } for input in "$@"; do |