Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
6
Task/Sleep/Batch-File/sleep-1.bat
Normal file
6
Task/Sleep/Batch-File/sleep-1.bat
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
@echo off
|
||||
set /p Seconds=Enter the number of seconds to sleep:
|
||||
set /a Seconds+=1
|
||||
echo Sleeping ...
|
||||
ping -n %Seconds% localhost >nul 2>&1
|
||||
echo Awake!
|
||||
5
Task/Sleep/Batch-File/sleep-2.bat
Normal file
5
Task/Sleep/Batch-File/sleep-2.bat
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
@echo off
|
||||
set /p MilliSeconds=Enter the number of milliseconds to sleep:
|
||||
echo Sleeping ...
|
||||
ping -n 1 -w %MilliSeconds% 1.2.3.4 >nul 2>&1
|
||||
echo Awake!
|
||||
5
Task/Sleep/Batch-File/sleep-3.bat
Normal file
5
Task/Sleep/Batch-File/sleep-3.bat
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
@echo off
|
||||
set /p Seconds=Enter the number of seconds to sleep:
|
||||
echo Sleeping ...
|
||||
timeout /t %Seconds% /nobreak >nul
|
||||
echo Awake!
|
||||
Loading…
Add table
Add a link
Reference in a new issue