diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2022-06-26 19:57:21 -0600 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2022-06-26 19:57:21 -0600 |
commit | 09e3317a433add776d6539abcd7cf4f00ca984e5 (patch) | |
tree | b692d7433f822126ffa539da65323f3c7662c391 /scripts/diff-dump-tree.sh | |
parent | 502cdc72771de93ce41e2a00bc201fc488603f59 (diff) |
add scripts
Diffstat (limited to 'scripts/diff-dump-tree.sh')
-rwxr-xr-x | scripts/diff-dump-tree.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/diff-dump-tree.sh b/scripts/diff-dump-tree.sh new file mode 100755 index 0000000..588242f --- /dev/null +++ b/scripts/diff-dump-tree.sh @@ -0,0 +1,4 @@ +#!/bin/bash +diff -u \ + <(../btrfs-progs/btrfs inspect dump-tree --noscan ../scratch/new.img | sed -e 's/ UNKNOWN.0 / UNTYPED /g' -e 's/\b18446744073709551615\b/-1/g') \ + <(go run ./cmd/btrfs-dump-tree/ ../scratch/new.img) |