Files
tree-sitter-nix-shell/corpus/shebang.txt
2023-07-04 10:13:53 +00:00

60 lines
761 B
Plaintext

==================
nix-shell shebang without any interpreter option
==================
#!/usr/bin/env nix-shell
---
(source_file
(first_line))
==================
nix-shell shebang whitespace
==================
#! /usr/bin/env nix-shell
---
(source_file
(first_line))
==================
nix-shell shebang no env
==================
#!nix-shell
---
(source_file
(first_line))
==================
nix-shell shebang whitespace no env
==================
#! nix-shell
---
(source_file
(first_line))
==================
nix-shell shebang via relative env
==================
#!env nix-shell
---
(source_file
(first_line))
==================
nix-shell shebang via /bin/env
==================
#!/bin/env nix-shell
---
(source_file
(first_line))