srele96 / run-them-all

Allows you to save the series of commands to a configuration and run them all easily.
MIT License
0 stars 1 forks source link

allow alias to reference other alias #40

Open skostic96 opened 2 years ago

skostic96 commented 2 years ago

Using config:

foo: echo foo
bar: echo bar
baz: echo baz
unified: foo bar baz

Running run-them-all unified should yield:

foo
bar
baz