Dailin 415ba84223 | il y a 3 ans | ||
---|---|---|---|
.. | |||
index.js | il y a 3 ans | ||
license | il y a 3 ans | ||
package.json | il y a 3 ans | ||
readme.md | il y a 3 ans |
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.