You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The additional shebang lines are a Nix-specific construct.
67
+
The additional shebang lines are a Nix-specific construct:
68
68
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.
70
70
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.
72
72
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.
75
76
`cacert` must be present for SSL authentication to work.
76
77
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.
80
83
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.
0 commit comments