Question: To run a group of commands without spawning a subshell, which syntax would you use?

  1. sh command1; command2
  2. { command1; command2; }
  3. (( command1; command2 ))
  4. command1; command2 )

Answer: The correct answer of the above question is Option D:command1; command2 )