A NodeJS CLI tool to run a command in a fixed interval
Go to file
Sagi Dayan 92f93c7c7d Update 'README.md' 2019-11-20 20:17:02 +00:00
bin raw implementation 2019-11-20 13:02:20 -05:00
lib raw implementation 2019-11-20 13:02:20 -05:00
.gitignore raw implementation 2019-11-20 13:02:20 -05:00
LICENSE Added MIT license 2019-11-20 13:11:20 -05:00
README.md Update 'README.md' 2019-11-20 20:17:02 +00:00
package-lock.json raw implementation 2019-11-20 13:02:20 -05:00
package.json raw implementation 2019-11-20 13:02:20 -05:00
yarn.lock raw implementation 2019-11-20 13:02:20 -05:00

README.md

iexec

Execute a command with fixed intervals until you want to stop

run $ iexec -h for usage.

Options:
  -V, --version                  output the version number
  -c, --command <command>        Command to execute wrapped in (default: null)
  -a, --arg [arg]                Arguments for the command (default: [])
  -i, --interval [milliseconds]  Interval milliseconds (default: 1000)
  -w, --wait                     Wait until execution ends before running a new process (default: false)
  -h, --help                     output usage information

example: $ iexec -c command -a arg1 -a arg2 will run this command every second: $ command arg1 arg2

Install

Clone the repo. run these commands:

$ npm install #OR yarn install
$ npm link

Now you can use the iexec command everywhere