Which Bash command reads one line of standard input into a variable named temp?
temp
It always uses $1 as a command-line argument.
$1
Echo reads the temperature and assigns it automatically.
read temp assigns one line of user input to the variable temp.
read temp
The temperature is hardcoded to 15.