setup-go/node_modules/shebang-command
Stephen Franceschelli a966e84ff9 Fix.
2019-07-30 13:30:32 -04:00
..
index.js Fix. 2019-07-30 13:30:32 -04:00
license Fix. 2019-07-30 13:30:32 -04:00
package.json Fix. 2019-07-30 13:30:32 -04:00
readme.md Fix. 2019-07-30 13:30:32 -04: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