annotate scripts/findglobals.sh @ 1178:f8432a8872e0 draft

More work on the cleanup page, partway through describing ifconfig.
author Rob Landley <rob@landley.net>
date Wed, 01 Jan 2014 15:00:44 -0600
parents a3268a1c055e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
880
a3268a1c055e Quick sniff test to find leaked global variables.
Rob Landley <rob@landley.net>
parents:
diff changeset
1 #!/bin/bash
a3268a1c055e Quick sniff test to find leaked global variables.
Rob Landley <rob@landley.net>
parents:
diff changeset
2
a3268a1c055e Quick sniff test to find leaked global variables.
Rob Landley <rob@landley.net>
parents:
diff changeset
3 # Quick and dirty check to see if anybody's leaked global variables.
a3268a1c055e Quick sniff test to find leaked global variables.
Rob Landley <rob@landley.net>
parents:
diff changeset
4 # We should have this, toy_list, toybuf, and toys.
a3268a1c055e Quick sniff test to find leaked global variables.
Rob Landley <rob@landley.net>
parents:
diff changeset
5
a3268a1c055e Quick sniff test to find leaked global variables.
Rob Landley <rob@landley.net>
parents:
diff changeset
6 nm toybox_unstripped | grep '[0-9A-Fa-f]* [BCDGRS]' | cut -d ' ' -f 3