Bash Read
echo -n "Type something and press enter: ";
read;
echo You typed ${REPLY}
AttractivePenguin
echo -n "Type something and press enter: ";
read;
echo You typed ${REPLY}
read -r input_var
#!/bin/bash
echo "Target IP Address"
read ip
echo "Target IP Address is: $ip"