take input in shell script code example
Example 1: shell promt user input
#!/bin/bash
read -p "Enter Your Name: " username
echo "Welcome $username!"
Example 2: how to take input in bash
#!/bin/bash
read -p "give input! " STOREDVAR
echo $STOREDVAR
Example 3: bash read input
echo "Synchronize repositories? Y/N"
read ANSWER