0

I can do this:

timeout /t 1 /nobreak

But what I can't do is this:

timeout /t 0.5 /nobreak

All I want is to set the wait time shorter than a second. Any ideas?

Tom Lenc
  • 747
  • 1
  • 15
  • 38
  • possible duplicate of [How to sleep for 5 seconds in Windows's Command Prompt? (or DOS)](http://stackoverflow.com/questions/1672338/how-to-sleep-for-5-seconds-in-windowss-command-prompt-or-dos) – NikolayK Feb 24 '15 at 09:10
  • No, you can't do this. – Endoro Feb 24 '15 at 09:11

1 Answers1

1

Why not use sleep:

sleep -m 500

Which would sleep for half a second.

Monacraft
  • 6,187
  • 1
  • 13
  • 27