Problem Statement
Which command changes file permissions in Linux?
Explanation
chmod stands for 'change mode' and is used to modify read, write, and execute permissions of files or directories.
You can specify permissions using symbolic notation (rwx) or numeric codes (like 755 or 644).
Code Solution
SolutionRead Only
chmod 755 script.sh
Practice Sets
This question appears in the following practice sets: