Zet - How you explain chmod in simple terms?

How you explain chmod in simple terms?

Common Permission Combinations

Numeric ValueSymbolPermission Description
7rwxRead, write, and execute
6rw-Read and write
5r-xRead and execute
4r—Read only
3-wxWrite and execute
2-w-Write only
1—xExecute only
0---No permissions

Example: chmod 755 myfolder

UserGroupOthers
7 (rwx)5 (r-x)5 (r-x)

chmod 755 sets the folder permissions to drwxr-xr-x.

#chmod #bash