Reading from keyboard input in a shell script.

This is the way to read values into your shell script variables from keyboard input. ```bash #!/bin/bash read name echo "Hello ${name}" ```