strip-shebang

Strip shebang (Example: #!/bin/sh) from a string


Keywords
cli, bin, strip, remove, shebang, hasbang, hash, pound
License
MIT
Install
npm install strip-shebang@2.0.0

Documentation

strip-shebang

Strip shebang (Example: #!/bin/sh) from a string

Install

$ npm install strip-shebang

Usage

import fs from 'node:fs';
import stripShebang from 'strip-shebang';

const string = fs.readFileSync('unicorns', 'utf8');
//=> #!/usr/bin/env node
//=> console.log('unicorns');

stripShebang(string);
//=>
//=> console.log('unicorns');