hush/testsuite/strings/strings-works-like-GNU
Eric Andersen 65ddf77fbd Patch from Tito to rework strings applet, and some testsuite
stuff to test it added by me.
2003-01-13 23:19:31 +00:00

9 lines
156 B
Plaintext

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;