chmod
is a UNIX/Linux utility used to change the access permissions and special mode flags of filesystem objects (i.e., files and directories).
Quick dictionary (we can use variations of these):
chmod +rwx <FILE>
— adds read, write, and execute permissions.chmod -rwx <FILE>
— removesrwx
permissions.