I'm trying to write a powershell script that implements a typing speed test. I'm looking to make it look something like this picture. So you print some text to the console, then print over it in a different font color. I have all the parts of the script worked out, except for printing over the text I already printed.
For a single line, its easy, just do something like write-host "mytext 'r -NoNewLine, and then the cursor is set back to the beginning of the line, but this method doesn't work if I want to output a multiline string, then print back over it.
Any ideas on how I could accomplish something like this in powershell?
