From 80a06ee7e1690b0e2e7fdd35d3b1cd8dd3378729 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 21 Jul 2026 12:34:12 -0500 Subject: [PATCH] Slightly rewrap to fit in 80 columns. --- scripts/probes/findglobals | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/probes/findglobals b/scripts/probes/findglobals index e6331bb4..6d1d68ab 100755 --- a/scripts/probes/findglobals +++ b/scripts/probes/findglobals @@ -3,6 +3,6 @@ # Quick and dirty check to see if anybody's leaked global variables. # We should have this, toy_list, toybuf, libbuf, toys, and toybox_version. -nm --size-sort generated/unstripped/${1-toybox} | grep '[0-9A-Fa-f]* [BCDGRS]' | \ - grep -v GLIBC | while read a b c; do printf '%s %d\t%s\n' $b 0x$a $c; done | \ - sort -k2,2n +nm --size-sort ${1-generated/unstripped/toybox} | grep '[0-9A-Fa-f]* [BCDGRS]' \ + | grep -v GLIBC | while read a b c; do printf '%s %d\t%s\n' $b 0x$a $c; done \ + | sort -k2,2n -- 2.39.5