-
Which command is used to make a script file ‘run_me.sh’ executable?
-
- chmod +y run_me.sh
- chmod +x run_me.sh
- chmod +a run_me.sh
- chmod +e run_me.sh
- None of these
Correct Option: B
The command name ‘chmod’ stands for ‘change mode’. It is used to define the way a file can be accessed. To make the script file ‘run_me.sh’ executable, the chmod command is used.