xxxxxxxxxx
echo -e "\nEnter a regular expression to search for?"
read reg_exp
xxxxxxxxxx
# fullname="USER INPUT"
read -p "Enter fullname: " fullname
# user="USER INPUT"
read -p "Enter user: " user
xxxxxxxxxx
#!/bin/bash
# Ask the user for their name
echo Hello, who am I talking to?
read varname
echo It\'s nice to meet you $varname
xxxxxxxxxx
echo "What's your name?"
read name
echo "Hello, $name! Nice to meet you."