Bash Scripting - User Input
Which command correctly reads three variables
var1, var2, and var3 from a single line of input in bash?var1, var2, and var3 from a single line of input in bash?read var1 var2 var3.-p which is for prompt message. read -a var1 var2 var3 uses -a which reads into an array, not separate variables. read var1,var2,var3 uses commas which is invalid.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions