Command sleep stops execution of program for a specified time.
Rearrange the lines to create a Bash program, which stops process execution for 7 seconds, while displaying comments about its actions.
Command sleep stops execution of program for a specified time.
Rearrange the lines to create a Bash program, which stops process execution for 7 seconds, while displaying comments about its actions.
#!/bin/bash
echo “Now will be pause for 7 seconds”
echo “Pause is completed”
sleep 7
Create a free account to access the full topic