autotag/node_modules/shebang-command
Corey Butler cda6f3fa13 WIP
2019-09-02 17:06:23 -05:00
..
index.js WIP 2019-09-02 17:06:23 -05:00
license WIP 2019-09-02 17:06:23 -05:00
package.json WIP 2019-09-02 17:06:23 -05:00
readme.md WIP 2019-09-02 17:06:23 -05:00

shebang-command Build Status

Get the command from a shebang

Install

$ npm install --save shebang-command

Usage

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.

License

MIT © Kevin Martensson