Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Read several values from one line

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