Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sungwoncho/shell-ejs
Write and execute shell scripts with ejs
https://github.com/sungwoncho/shell-ejs
Last synced: 27 days ago
JSON representation
Write and execute shell scripts with ejs
- Host: GitHub
- URL: https://github.com/sungwoncho/shell-ejs
- Owner: sungwoncho
- License: mit
- Created: 2015-11-08T03:46:44.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-08T03:55:23.000Z (about 9 years ago)
- Last Synced: 2024-11-15T10:57:37.994Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# shell-ejs
[![Build Status](https://travis-ci.org/sungwoncho/shell-ejs.svg?branch=master)](https://travis-ci.org/sungwoncho/shell-ejs)
Write and execute shell scripts with ejs.
## Install
npm install shell-ejs
## Usage
```js
var shellEjs = require('shell-ejs');var variables = {
host: 'http://my.domain.com',
port: 3000
};
shellEjs.executeFile('./deploy.sh', variables, function (err, stdout, stderr) {
// Do something
})
```## License
MIT