summaryrefslogtreecommitdiff
path: root/lf
diff options
context:
space:
mode:
authorZachIR <zachir@librem.one>2024-11-19 12:50:39 -0600
committerZachIR <zachir@librem.one>2024-11-19 12:50:39 -0600
commit82eb7148181fa6ecfa1fcc4979fccc75f269bdd9 (patch)
tree927c12a8ecc4cd2672e792a03d4cb0b2f607a973 /lf
parent50651b5484ab0351ed03a8b254ce085a98d28cd3 (diff)
parent2b9df77bbc5fa85f94b15b043c659168a606d1db (diff)
Merge branch 'master' into car
Diffstat (limited to 'lf')
-rw-r--r--lf/lfrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lf/lfrc b/lf/lfrc
index 702fc2d..19c6051 100644
--- a/lf/lfrc
+++ b/lf/lfrc
@@ -51,9 +51,9 @@ cmd chmod ${{
printf "Mode Bits: "
read ans
- for file in "$fx"
+ echo "$fx" | while read file
do
- chmod $ans $file
+ chmod "$ans" "$file"
done
}}