cat-bookmarker/assets/node_modules/shebang-command
Nat 96939b7aee
Clean up repo and update deps
2024-03-10 11:52:04 -07:00
..
index.js Clean up repo and update deps 2024-03-10 11:52:04 -07:00
license Clean up repo and update deps 2024-03-10 11:52:04 -07:00
package.json Clean up repo and update deps 2024-03-10 11:52:04 -07:00
readme.md Clean up repo and update deps 2024-03-10 11:52:04 -07:00

readme.md

shebang-command Build Status

Get the command from a shebang

Install

$ npm install shebang-command

Usage

const shebangCommand = require('shebang-command');

shebangCommand('#!/usr/bin/env node');
//=> 'node'

shebangCommand('#!/bin/bash');
//=> 'bash'

API

shebangCommand(string)

string

Type: string

String containing a shebang.