了解Nix中的Builtins.toFile

时间:2019-06-05 13:46:14

标签: nix

来自https://medium.com/@MrJamesFisher/nix-by-example-a0063a1a4c55

  

显式输出不属于语言的一部分。其实没有   命令。您无法写入文件或调用外部   命令。

但是:

nix-repl> x = builtins.toFile "a.txt" "a\n"

nix-repl> x
"/nix/store/z2gxprmwxdfyrb4rka1629bvxxa429ga-a.txt"

nix-repl> :t x
a string with context

~: cat /nix/store/z2gxprmwxdfyrb4rka1629bvxxa429ga-a.txt 
a

我的nix repl会话与上面的引用相矛盾吗?

0 个答案:

没有答案