Files
tree-sitter-nix-shell/corpus/shebang_with_sub_interpreter.txt
2023-07-04 08:57:44 +00:00

23 lines
341 B
Plaintext

==================
Minimal nix-shell invocation
==================
#!/usr/bin/env nix-shell
#!nix-shell -i bash
---
(source_file
(first_line
(shebang_open)
(opt_ws)
(env)
(ws)
(nix_shell))
(next_line
(newline)
(annotation_line
(shebang_open)
(opt_ws)
(nix_shell)
(nix_shell_args))))