Complete the code to start Unity Hub from the command line.
unityhub [1]Use --open to launch Unity Hub from the command line.
Complete the code to install Unity Editor version 2023.1.0 using Unity Hub CLI.
unityhub install --version [1]The version 2023.1.0 is specified to install that exact Unity Editor version.
Fix the error in the command to add a module to Unity Editor installation.
unityhub install-modules --version 2023.1.0 --module [1]
The correct module name for WebGL support is webgl.
Fill both blanks to create a new Unity project with the name 'MyGame' and template '3D'.
unityhub create-project --name [1] --template [2]
The project name is MyGame and the template for a 3D project is 3D.
Fill all three blanks to list installed Unity versions, filter for version greater than 2022, and sort descending.
unityhub list --installed | grep [1] | sort [2] --version [3]
Filter versions greater than 2022 with 2022, sort in reverse with -r, and use > to compare versions.