Created
March 31, 2021 09:35
-
-
Save tanay-pingalkar/c057a19017ea4be8063572b4f66647ab to your computer and use it in GitHub Desktop.
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
// this are comments | |
// this iS use to run big shell like installation etc, it excepts 1 arguments | |
RUN "cowsay this is runner you get it" | |
// this is use to print text, it excepts 1 arguments | |
PRINT "welcome to runner" | |
// this is use to print text, it excepts 1 arguments | |
BLUE "color full text is here" | |
// this is use to print text using cowsay, it excepts 1 argument | |
COWSAY "this cowsay" | |
// this is use to run 2 shell commands CONCURRENT, this is a beta feature and maybe contain bugs this excepts many arguments | |
CONCURRENT "ls" "touch lol.js" | |
// this is use to run shell commands asyncronoumously, this is a beta feature and maybe contain bugs this excepts 1 arguments | |
DO_ASYNC "rm lol.js" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment