interactive.sh 191 Bytes Edit 1 2 3 4 5 6 7 8 #!/usr/bin/env bash echo "give me some input:" { read first_input; echo first=$first_input; } echo "go on" echo "give me more:" { read second_input; echo second=$second_input; } echo "done"