mirror of
http://git.busybox.net/busybox/
synced 2025-01-19 07:55:54 +00:00
74324c8666
tr: stop using globals needlessly. code: -103 bytes
13 lines
331 B
Bash
Executable file
13 lines
331 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# This script finds applets with multiple uses of bb_common_bufsiz1
|
|
# (== possible bugs).
|
|
# Currently (2007-06-04) reports 3 false positives:
|
|
# ./coreutils/diff.c:7
|
|
# ./loginutils/getty.c:2
|
|
# ./util-linux/mount.c:5
|
|
|
|
find -name '*.c' \
|
|
| while read name; do
|
|
grep -Hc bb_common_bufsiz1 "$name"
|
|
done | grep -v ':[01]$'
|