Skip to content

Commit 244f653

Browse files
authoredJan 19, 2025··
shebang scripts: clarify explanation of parameters using formatting (#1097)
Prompted by #1096 It may not be immediately obvious that the paragraphs following the code sample explain the invocation parameters. Making them a list should let that part stand out enough to slow down reading a bit.
1 parent 882ee18 commit 244f653

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed
 

‎source/tutorials/first-steps/reproducible-scripts.md

+12-10
Original file line numberDiff line numberDiff line change
@@ -64,22 +64,24 @@ curl https://github.com/NixOS/nixpkgs/releases.atom | xml2json | jq .
6464
```
6565

6666
The first line is a standard shebang.
67-
The additional shebang lines are a Nix-specific construct.
67+
The additional shebang lines are a Nix-specific construct:
6868

69-
We specify `bash` as the interpreter for the rest of the file with the `-i` option.
69+
- With the `-i` option, `bash` is specified as the interpreter for the rest of the file.
7070

71-
We enable the `--pure` option to prevent the script from implicitly using programs that may already exist on the system that will run the script.
71+
- In this case, the `--pure` option is enabled to prevent the script from implicitly using programs that may already exist on the system on which the script is run.
7272

73-
With the `-p` option we specify the packages required for the script to run.
74-
The command `xml2json` is provided by the package `python3Packages.xmljson`, while `bash`, `jq`, and `curl` are provided by packages of the same name.
73+
- The `-p` option lists the packages required for the script to run.
74+
75+
The command `xml2json` is provided by the package `python3Packages.xmljson`, while `bash`, `jq`, and `curl` are provided by packages of the same name.
7576
`cacert` must be present for SSL authentication to work.
7677

77-
:::{tip}
78-
Use [search.nixos.org](https://search.nixos.org/packages) to find packages providing the program you need.
79-
:::
78+
:::{tip}
79+
Use [search.nixos.org](https://search.nixos.org/packages) to find packages providing the program you need.
80+
:::
81+
82+
- The parameter of `-I` refers to a specific Git commit of the Nixpkgs repository.
8083

81-
The parameter of `-I` refers to a specific Git commit of the Nixpkgs repository.
82-
This ensures that the script will always run with the exact same packages versions, everywhere.
84+
This ensures that the script will always run with the exact same packages versions, everywhere.
8385

8486
Make the script executable:
8587

0 commit comments

Comments
 (0)
Please sign in to comment.