Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Powershell stdout flush

Tags:

powershell

How to force STDOUT flush in PowerShell? I've tried with Console.Out.Flush() but it seems to be waiting for some argument.

Can anyone help me? Thanks

like image 292
pistacchio Avatar asked Oct 27 '11 15:10

pistacchio


1 Answers

To force STDOUT flush in PowerShell

 [Console]::Out.Flush() 
like image 107
Paul Rowland Avatar answered Nov 16 '22 03:11

Paul Rowland