perf: improve zfs-diff script further
parent
76fe882747
commit
1a9474a700
|
@ -29,7 +29,7 @@
|
||||||
name = "zfs-diff";
|
name = "zfs-diff";
|
||||||
runtimeInputs = with pkgs; [ zfs coreutils parallel tree ];
|
runtimeInputs = with pkgs; [ zfs coreutils parallel tree ];
|
||||||
text = ''
|
text = ''
|
||||||
sudo zfs diff zroot/encrypted/root@blank | cut -f2 | parallel 'test -e /persist/{} || echo {}' | tree --fromfile .
|
zfs diff -F zroot/encrypted/root@blank | awk '$2 == "F" && system("test -e /persist/"$3) != 0 { print $3 }' 2>/dev/null | tree --fromfile . "$@"
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue