Which of the following command sets the Bash variable named TEST with the content FOO?
set TEST="FOO"
TEST = "FOO"
var TEST="FOO"
TEST="FOO"
Submit