Remove write space in shebang line (#736)

This commit is contained in:
a c sreedhar reddy 2023-10-03 13:42:05 +05:30 committed by GitHub
parent be7c3bec3d
commit f2fe0aa56b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,7 @@ 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)
We will use the shebang line `#! /usr/bin/env nix-shell`.
We will use the shebang line `#!/usr/bin/env nix-shell`.
[`env`] is a program available on most modern Unix-like operating systems at the file system path `/usr/bin/env`.
It takes a command name as argument and will run the first executable by that name it finds in the directories listed in the environment variable `$PATH`.