MOON
Server: Apache
System: Linux 54-179-220-51.cprapid.com 3.10.0-1160.144.1.el7.tuxcare.els4.x86_64 #1 SMP Tue Apr 7 08:40:40 UTC 2026 x86_64
User: thehunarfound (1001)
PHP: 7.4.29
Disabled: NONE
Upload Files
File: /home/thehunarfound/public_html/DMSold/node_modules/bin-check/readme.md
# bin-check [![Build Status](https://travis-ci.org/kevva/bin-check.svg?branch=master)](https://travis-ci.org/kevva/bin-check)

> Check if a binary is working by checking its exit code


## Install

```
$ npm install --save bin-check
```


## Usage

```js
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](https://github.com/kevva)