How to pause execution in Powershell (Windows) similar to Unix CTRL-z and 'fg'?

Viewed 1589

Is there an equivalent command in Powershell (windows terminal) for pausing execution similar to Unix CTRL+Z?

If yes, what is the equivalent command to resume it, similar to the fg command?

1 Answers

You can with Pause Break, and resume with ENTER

Related