41 lines
511 B
Plaintext
41 lines
511 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))
|