My task was to configure a directory so that users in a group could only delete files they own.
I used chmod 1771 RandD
, as suggested by lab instructions, to accomplish this.
When running ls -l
, the permissions were displayed as drwxrwx--t
.
I understand why there is a t
at the end of the permissions, since the last 1 in chmod 1771 RandD
is responsible for other permissions. However, what is the point of the first 1 if t
is not displayed in the user's permissions section?