diff options
Diffstat (limited to '')
-rwxr-xr-x | modules/by-name/lf/lf/commands/scripts/dragon.sh | 2 | ||||
-rwxr-xr-x | modules/by-name/lf/lf/commands/scripts/dragon_individual.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/by-name/lf/lf/commands/scripts/dragon.sh b/modules/by-name/lf/lf/commands/scripts/dragon.sh index 0e6123e1..299d7bbe 100755 --- a/modules/by-name/lf/lf/commands/scripts/dragon.sh +++ b/modules/by-name/lf/lf/commands/scripts/dragon.sh @@ -11,7 +11,7 @@ id="$id" while read -r file; do set -- "$@" "$file" -done < "$(echo "$fx" | tmp)" +done <"$(echo "$fx" | tmp)" dragon --all --and-exit "$@" # vim: ft=sh diff --git a/modules/by-name/lf/lf/commands/scripts/dragon_individual.sh b/modules/by-name/lf/lf/commands/scripts/dragon_individual.sh index 580b0cd0..1cb603d9 100755 --- a/modules/by-name/lf/lf/commands/scripts/dragon_individual.sh +++ b/modules/by-name/lf/lf/commands/scripts/dragon_individual.sh @@ -11,7 +11,7 @@ id="$id" while read -r file; do set -- "$@" "$file" -done < "$(echo "$fx" | tmp)" +done <"$(echo "$fx" | tmp)" dragon "$@" # vim: ft=sh |