ljubi a81aaebda8 3 tests | hace 5 meses | |
---|---|---|
.. | ||
index.js | hace 5 meses | |
license | hace 5 meses | |
package.json | hace 5 meses | |
readme.md | hace 5 meses |
Get the command from a shebang
$ npm install shebang-command
const shebangCommand = require('shebang-command');
shebangCommand('#!/usr/bin/env node');
//=> 'node'
shebangCommand('#!/bin/bash');
//=> 'bash'
Type: string
String containing a shebang.