brun
v1.0.2
Published
Run a series of commands using brace expansion.
Downloads
6
Readme
brun
Run a series of commands using brace expansion.
Install
npm install -g brun
Use
Example:
brun 'git {add -a,commit -m "done",push}'
will run (in series):
git add -a
git commit -m "done"
git push
as long as each command in the sequence executes successfully.