From 674bd0bdfec10fd281f59e2c197a04a722b6ce18 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sat, 17 Jul 2021 11:35:29 +0300 Subject: [PATCH] misc: comment --- kiss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kiss b/kiss index 500a78e..b8eae84 100755 --- a/kiss +++ b/kiss @@ -1121,6 +1121,9 @@ file_rwx() { # Convert the output of 'ls' (rwxrwx---) to octal. This is simply # a 1-9 loop with the second digit being the value of the field. + # + # NOTE: This drops setgid/setuid permissions and does not include + # them in the conversion. This is intentional. for c in 14 22 31 44 52 61 74 82 91; do rwx=${rwx#?}