Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cmp-detects-difference « cmp « testsuite - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5544f9a831b2d76dedab2abffd01979901e8ab8 (plain)
1
2
3
4
5
6
7
echo foo >foo
echo bar >bar
if busybox cmp -s foo bar; then
	return 1
else
	return 0
fi