Login using Social Account
     Continue with GoogleLogin using your credentials
There is a command called sleep
which can make you wait or suspend your terminal for a specified time. So, it pauses the execution of next command for a given time.
So, you can suspend your terminal for 5 seconds like:
sleep 5
We can also use s
suffix with number for seconds(which is by default), m
for minutes, h
for hours and d
for days. So you can use sleep 2m
to suspend terminal for 2 minutes.
Please send sleep command in background using:
sleep 1000 &
Note - You will get a process ID on the execution of the above command
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
No hints are availble for this assesment
Loading comments...