i am using read -p "Press any key to continue" in my script. This works fine except when it is in a while loop like
while read TEST_NAME ; do
read -p "Press any key..."
echo "Executing:"
done <$MT_TEST_ROOT_DIR/automation.mts
i am suspecting it is because of the enclosing while looping doing the read as well. so what would be the solution for it