Google News
logo
Unix - Quiz(MCQ)
To run the script, we should make it executable first by using _____
A)
chmod +r
B)
chmod +w
C)
chmod +x
D)
chmod +rwx

Correct Answer :   chmod +x


Explanation : Before we run the script, it is essential to make the script executable first. After that invoke the script name to run the script. For making the script executable, we have to use chmod +x script_name.

Advertisement