summaryrefslogtreecommitdiff
path: root/lf
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2025-01-20 01:48:00 -0600
committerzachir <zachir@librem.one>2025-01-20 01:48:00 -0600
commit2c7f331ab107267cf36c8c8ccb371f0cc451717d (patch)
tree250ca143d9993c97545f830a38a6c0ac7136e6d9 /lf
parent0545082bcc4fe8b79a95acf9c16f9593d9511caf (diff)
parent461c7af7ef31feb1db7e39762011ca0e54242d76 (diff)
Merge branch 'master' into cla
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
}}