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