Patch from Tito to rework strings applet, and some testsuite

stuff to test it added by me.
This commit is contained in:
Eric Andersen
2003-01-13 23:19:31 +00:00
parent b4a1baa312
commit 65ddf77fbd
2 changed files with 78 additions and 63 deletions

View File

@ -0,0 +1,8 @@
rm -f foo bar
strings -af ../../busybox > foo
busybox strings -af ../../busybox > bar
test ! -f foo -a -f bar
if [ $? = 0 ] ; then
diff -q foo bar
fi;