Read several values from one line



examples/script/read_more.sh
read -p "Please enter two strings: " a b
echo You typed in $a and $b

$ ./examples/script/read_more.sh 
Please enter two strings: one two
You typed in one and two