1
0
Fork 0
mirror of https://github.com/NixOS/nix.dev.git synced 2024-10-18 14:32:43 -04:00

Merge pull request #472 from NixOS/shebang

reword introduction to shebangs
This commit is contained in:
Valentin Gagarin 2023-03-17 02:25:36 +01:00 committed by GitHub
commit be5a4c180a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,8 +27,7 @@ With Nix, we can declare all dependencies explicitly, and produce a script that
## The script
A [shebang] is the first line of a script starting with `#!`.
It determines which program to use for running the script.
A [shebang] determines which program to use for running an interpreted script.
[Bash]: https://www.gnu.org/software/bash/
[shebang]: https://en.wikipedia.org/wiki/Shebang_(Unix)