Sleeping program

Report a typo

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.

Reorder lines using drag or arrows. Adjust indentation with left buttons
                #!/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