Created
June 26, 2018 16:03
-
-
Save wdv4758h/ee9f2f0fd0bf53f79e4c45e7d9a0914e to your computer and use it in GitHub Desktop.
Just a sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
taskA: | |
@echo "this is task A" | |
@sleep 1 | |
@echo "end task A" | |
taskB: taskA | |
@echo "this is task B" | |
@sleep 3 | |
@echo "end task B" | |
taskC: taskA | |
@echo "this is task C" | |
@sleep 2 | |
@echo "end task C" | |
taskD: taskC | |
@echo "this is task D" | |
@sleep 4 | |
@echo "end task D" | |
taskE: taskB taskD | |
@echo "this is task E" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment