Home » MYSQL » Interacting With MySQL » Question
  1. Suppose run_me.sh is a script file. Which command is used to make it executable?
    1. chmod +x run_me.sh
    2. chmod +y run_me.sh
    3. chmod +a run_me.sh
    4. chmod +e run_me.sh
    5. None of these
Correct Option: A

The command ‘chmod +x file_name’ makes a script file executable. mysql supports reading from a script file and executing queries from it. Before a script is run, it is necessary for it to be made executable.



Your comments will be displayed only after manual approval.