RosettaCodeData/Task/Keyboard-input-Flush-the-keyboard-buffer/PowerShell/keyboard-input-flush-the-keyboard-buffer-1.psh

4 lines
80 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
while ($Host.UI.RawUI.KeyAvailable) {
$Host.UI.RawUI.ReadKey() | Out-Null
}