Dailin 415ba84223 | 3 years ago | ||
---|---|---|---|
.. | |||
index.js | 3 years ago | ||
license | 3 years ago | ||
package.json | 3 years ago | ||
readme.md | 3 years ago |
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.