CmdWiz

7 Streak
Back to vault
Permissions

Change Permissions

chmod 755 filename

Functional Description

Changes file permissions: owner gets full access (read/write/execute), group and others get read and execute.

CategoryLinux
Difficultyintermediate

Execution Recipes

Make Script Executable
chmod +x deploy.sh

Adds the execute bit for all permission classes.

Recursive Permissions
chmod -R 644 ./public

Applies the mode to every file under the directory.

Official Documentation

View the technical reference