Skip to content

Instantly share code, notes, and snippets.

@wdv4758h
Created June 26, 2018 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wdv4758h/ee9f2f0fd0bf53f79e4c45e7d9a0914e to your computer and use it in GitHub Desktop.
Save wdv4758h/ee9f2f0fd0bf53f79e4c45e7d9a0914e to your computer and use it in GitHub Desktop.
Just a sample
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