So I'm trying to do something like the following:
while read line; do
read userInput
echo "$line $userInput"
done < file.txt
So say file.txt has:
Hello?
Goodbye!
Running the program would create:
Hello?
James
Hello? James
Goodbye!
Farewell
Goodbye! Farewell
The issue (naturally) becomes that the userinput read reads from stdin which in our case is file.txt. Is there a way to change where it's reading from temporarily to the terminal in order to grab user input?
Note: The file I am working with is 200,000 lines long. and each line is about 500 chars long. So keep that in mind if needed