interactive.sh 191 Bytes
#!/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"