Files
tree-sitter-nix-shell/corpus/shebang.txt
2023-07-04 21:38:19 +00:00

80 lines
1022 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 tab
==================
#! /usr/bin/env nix-shell
---
(source_file
(first_line))
==================
nix-shell shebang tabs and spaces
==================
#! /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))