Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.

bit-bandit/run

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

run - Command runner.

NOTE: This project has been rendered obsolete by deno task. Use that, instead of this!


run is a simple, YAML-based command runner.

Synopsis

run [commands]
run -f [runfile] [commands]

Usage

# file name: runfile
# each action is represented as a list of commands,
# which `run` will execute in order.

test:
  - echo "Hello, World!"
  - printf "%s\n" "This is a test!"
# `run` searches for a YAML file name `runfile` in the current working 
# directory, if no argument for a specific runfile is provided.
# To specify a runfile, provide the flag `run -f='/location/of/runfile'`.
$ run test
Hello, World!
This is a test!

CLI Flags

  • -f / --runfile - Location of runfile.

TODO

  • Support local variables(?).
  • Fix any bugs that may be present, particularly when it comes to parsing, and executing commands.

License

0BSD

About

Simple command runner for Deno.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published