9 lines
156 B
Plaintext
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;
|
||
|
|