How to make a timer with a signal from the command line in Windows
Timer. timeout /t 10 /nobreak > NUL /t specifies the time to wait in seconds /nobreak won’t interrupt the timeout if you press a button (except CTRL-C) > NUL will suppress the output of the command sleep Usage: sleep time-to-sleep-in-seconds sleep [-m] time-to-sleep-in-milliseconds sleep [-c] commited-memory ratio (1%-100%) You can just say sleep 1 for … Leer más