This repository has no description
1{
2 writeScriptBin,
3 bash,
4 coreutils,
5 gnused,
6 ...
7}:
8
9writeScriptBin "thm" (
10 builtins.replaceStrings
11 [
12 "#!/bin/sh"
13 "printf"
14 "mkdir"
15 "mv"
16 "sed"
17 ]
18 [
19 "#!${bash}/bin/sh"
20 "${coreutils}/bin/printf"
21 "${coreutils}/bin/mkdir"
22 "${coreutils}/bin/mv"
23 "${gnused}/bin/sed"
24 ]
25 (builtins.readFile ../scritps/thm)
26)