PHP 8.2.30
Preview: readShebang.js Size: 549 B
//opt/alt/alt-nodejs18/root/usr/lib/node_modules/npm/node_modules/cross-spawn/lib/util/readShebang.js

'use strict';

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

function readShebang(command) {
    // Read the first 150 bytes from the file
    const size = 150;
    const buffer = Buffer.alloc(size);

    let fd;

    try {
        fd = fs.openSync(command, 'r');
        fs.readSync(fd, buffer, 0, size, 0);
        fs.closeSync(fd);
    } catch (e) { /* Empty */ }

    // Attempt to extract shebang (null is returned if not a shebang)
    return shebangCommand(buffer.toString());
}

module.exports = readShebang;

Directory Contents

Dirs: 0 × Files: 3

Name Size Perms Modified Actions
1.14 KB lrw-r--r-- 2026-03-09 09:08:38
Edit Download
549 B lrw-r--r-- 2026-03-09 09:08:38
Edit Download
1.52 KB lrw-r--r-- 2026-03-09 09:08:38
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).