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