Created
June 19, 2024 18:31
-
-
Save Rafael-Ramblas/597bcefdffe45df30d0a197805e0039f to your computer and use it in GitHub Desktop.
A JSON that maps know shebangs to their correspondent languages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"#!/bin/bash": "shell", | |
"#!/bin/sh": "shell", | |
"#!/bin/zsh": "shell", | |
"#!/bin/python3": "python", | |
"#!/usr/bin/env python": "python", | |
"#!/usr/bin/env perl": "perl", | |
"#!/usr/bin/env ruby": "ruby", | |
"#!/usr/bin/env php": "php", | |
"#!/usr/bin/env node": "javascript", | |
"#!/usr/bin/env bash": "shell", | |
"#!/usr/bin/env sh": "shell", | |
"#!/usr/bin/env lua": "lua", | |
"#!/usr/bin/env awk": "awk", | |
"#!/usr/bin/env sed": "sed", | |
"#!/usr/bin/env r": "r", | |
"#!/usr/bin/env swift": "swift", | |
"#!/usr/bin/env perl6": "perl", | |
"#!/usr/bin/env powershell": "powershell", | |
"#!/usr/bin/env tclsh": "tcl", | |
"#!/usr/bin/env fish": "shell" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment