blob: b9bb628f109291edca4fe1e7e39803521f027542 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001echo foo >foo
2echo bar >bar
3set +e
4busybox cmp -s foo bar
5if [ $? != 0 ] ; then
6 exit 0;
7fi
8
9exit 1;