In windows command prompt, I run a command like this
program.exe all
and it prints out stuff as it runs, then ends. How can I basically do this?
while (1) {
program.exe all
}
but in a way that I can still see it print out the stuff, and I can stop it by just doing ctrl+c.
Thanks