Sha256: a13b61c1aa20fcfec6497d491489ade3501df2d9b8ee735f581f67c338a47718
Contents?: true
Size: 567 Bytes
Versions: 78
Compression:
Stored size: 567 Bytes
Contents
# shebang-command [![Build Status](https://travis-ci.org/kevva/shebang-command.svg?branch=master)](https://travis-ci.org/kevva/shebang-command) > Get the command from a shebang ## Install ``` $ npm install --save 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. ## License MIT © [Kevin Martensson](http://github.com/kevva)
Version data entries
78 entries across 77 versions & 13 rubygems