cascade-functions/file-lines.nix

9 lines
140 B
Nix
Raw Permalink Normal View History

2022-10-16 22:46:24 +00:00
with builtins;
p:
let
contents = readFile p;
splitRes = split "\r?\n" contents;
lines = filter isString splitRes;
in lines