When running ls -al, the beginning of the output starts with something like drwxrwxr-x In this string
I understand the following:
d--> At the beginning of the string means directoryr--> Means read permissionsw--> Means Write permissionsx--> And the x means execute permissions
What I am confused about though, is why does the rwx repeat multiple times throughout this string drwxrwxr-x??? I believe it has something to do with current user permissions, group permissions, and something else.... Any advice or knowledge would be greatly appreciated...