Understanding Unix Permissions
Unix file permissions control who can read (r=4), write (w=2), and execute (x=1) files. Each digit in the numeric format represents owner, group, and others. For example, 755 means the owner can do everything (7=4+2+1), while group and others can read and execute (5=4+1) but not write.