mirror of
https://github.com/topjohnwu/ndk-busybox.git
synced 2025-02-09 21:32:35 +00:00
8 lines
88 B
Plaintext
8 lines
88 B
Plaintext
echo foo >foo
|
|
echo bar >bar
|
|
if busybox cmp -s foo bar; then
|
|
return 1
|
|
else
|
|
return 0
|
|
fi
|