Initial public busybox upstream commit
[busybox4maemo] / testsuite / strings / strings-works-like-GNU
1 rm -f foo bar
2 strings -af ../../busybox > foo
3 busybox strings -af ../../busybox > bar
4 set +e
5 test ! -f foo -a -f bar
6 if [ $? = 0 ] ; then
7         set -e
8         diff -q foo bar
9 fi