Open iterm tab and run a command programmatically
npm install iterm-tabOpen iterm tab and run a command programmatically
```
yarn add iterm-tab
`
const itermTab = require('iterm-tab')
itermTab(cd .. && echo "my command")`
.then(() => console.log('yay'))
itermTab(command, options)
#### command
The command to execute after open the new tab
Type: String
#### options
Type: Object
##### options.close
Closes tab immediately or after n seconds. Useful to launch persistent services like mongod.
Type: Boolean|Number
Default: false
##### options.delayAfterRun
Wait number of seconds before let continue the tasks.
Type: Number
Default: 0
##### options.splitTab
Split the current tab horizontally or vertically then run the command.
Type: Boolean|String
Default: false
For Vertical Split: { splitTab: 'vertically' }
For Horizontal Split: { splitTab: 'horizontally' }
Take a look into this example running two instances of iterm-tab`