Skip to content

Instantly share code, notes, and snippets.

@tanay-pingalkar
Created March 31, 2021 09:35
Show Gist options
  • Save tanay-pingalkar/c057a19017ea4be8063572b4f66647ab to your computer and use it in GitHub Desktop.
Save tanay-pingalkar/c057a19017ea4be8063572b4f66647ab to your computer and use it in GitHub Desktop.
// 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