64 lines
835 B
Plaintext
64 lines
835 B
Plaintext
==================
|
|
nix-shell shebang without any interpreter option
|
|
==================
|
|
|
|
#!/usr/bin/env nix-shell
|
|
---
|
|
|
|
(source_file)
|
|
|
|
==================
|
|
nix-shell shebang whitespace
|
|
==================
|
|
|
|
#! /usr/bin/env nix-shell
|
|
---
|
|
|
|
(source_file)
|
|
|
|
==================
|
|
nix-shell shebang tab
|
|
==================
|
|
|
|
#! /usr/bin/env nix-shell
|
|
---
|
|
|
|
(source_file)
|
|
|
|
==================
|
|
nix-shell shebang tabs and spaces
|
|
==================
|
|
|
|
#! /usr/bin/env nix-shell
|
|
---
|
|
|
|
(source_file)
|
|
|
|
==================
|
|
nix-shell shebang via relative env
|
|
==================
|
|
|
|
#!env nix-shell
|
|
---
|
|
|
|
(source_file)
|
|
|
|
==================
|
|
nix-shell shebang via /bin/env
|
|
==================
|
|
|
|
#!/bin/env nix-shell
|
|
---
|
|
|
|
(source_file)
|
|
|
|
==================
|
|
nix-shell multiple shebangs
|
|
==================
|
|
|
|
#!/usr/bin/env nix-shell
|
|
#!/usr/bin/env nix-shell
|
|
---
|
|
|
|
(source_file)
|