60 lines
761 B
Plaintext
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))
|