diff options
Diffstat (limited to 'lf')
-rw-r--r-- | lf/lfrc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 }} |