mirror of
https://github.com/nodejs/node.git
synced 2025-05-08 03:13:13 +00:00

Greatly simplify how ESLint and its plugins are installed. PR-URL: https://github.com/nodejs/node/pull/53413 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
35 lines
495 B
Markdown
35 lines
495 B
Markdown
# shebang-command [](https://travis-ci.org/kevva/shebang-command)
|
|
|
|
> Get the command from a shebang
|
|
|
|
|
|
## Install
|
|
|
|
```
|
|
$ npm install shebang-command
|
|
```
|
|
|
|
|
|
## Usage
|
|
|
|
```js
|
|
const shebangCommand = require('shebang-command');
|
|
|
|
shebangCommand('#!/usr/bin/env node');
|
|
//=> 'node'
|
|
|
|
shebangCommand('#!/bin/bash');
|
|
//=> 'bash'
|
|
```
|
|
|
|
|
|
## API
|
|
|
|
### shebangCommand(string)
|
|
|
|
#### string
|
|
|
|
Type: `string`
|
|
|
|
String containing a shebang.
|