In python, the following line results in an interactive shell which I can use like any terminal.
os.system("bash");
Typing exit here quits the shell and the python script continues to execute.
How can i do something like this in Deno?
Edit: I should have been a bit more verbose in my initial question. My intent is not just to run a shell command. I want to run an interactive shell which grabs input/output until I manually exit with exit command. Deno.run({cmd: ["bash"]}) does not do this.