diff options
| author | Irene Knapp <ireneista@irenes.space> | 2026-04-13 15:45:51 -0700 |
|---|---|---|
| committer | Irene Knapp <ireneista@irenes.space> | 2026-04-13 15:45:51 -0700 |
| commit | 3cfc22c7448d90f2c20d059937f007fcb59e9ad6 (patch) | |
| tree | c1d8adfd4d86065d3aad0b6a19e5fd3ea864c358 | |
| parent | a6e2609e4e587e2846523acbcce99ccd232eeca6 (diff) | |
add another sed script, to remove absolute addresses
this is useful for a different type of comparison Force-Push: yes Change-Id: I225af22586924a716c0d0802cda5194fd19d7d12
| -rw-r--r-- | describe-redact.sed | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/describe-redact.sed b/describe-redact.sed new file mode 100644 index 0000000..1303058 --- /dev/null +++ b/describe-redact.sed @@ -0,0 +1,5 @@ +# Pipe either memory segment's output through this after the other script, +# to remove things that depend on exact addresses. + +/^[0-9a-f]\{16\}/d +s/^ lit [0-9]\+ exit$/ lit REDACTED exit/ |