You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rdrew
1440706ce3
|
6 years ago | |
---|---|---|
.. | ||
index.js | 6 years ago | |
license | 6 years ago | |
package.json | 6 years ago | |
readme.md | 6 years ago |
readme.md
bin-check
Check if a binary is working by checking its exit code
Install
$ npm install --save bin-check
Usage
var binCheck = require('bin-check');
binCheck('/bin/sh', ['--version'], function (err, works) {
console.log(works);
//=> true
});
API
binCheck(binary, command, callback)
binary
Type: string
Path to the binary.
command
Type: array
Default: ['--help']
Commands to run the binary with.
callback(err, works)
Type: function
works
is a boolean
which returns true
if the binary is working correctly.
License
MIT © Kevin Mårtensson