peach a19a732be8 commit message | 2 år sedan | |
---|---|---|
.. | ||
index.js | 2 år sedan | |
license | 2 år sedan | |
package.json | 2 år sedan | |
readme.md | 2 år sedan |
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.