2023-11-16 23:19:36 -05:00

10 lines
101 B
Plaintext

echo foo >foo
echo bar >bar
set +e
busybox cmp -s foo bar
if [ $? != 0 ] ; then
exit 0;
fi
exit 1;