aboutsummaryrefslogtreecommitdiff
path: root/testsuite/xargs/xargs-works
blob: a4bba763007c26177c18259c389a4b5ce7bdb9b9 (plain)
1
2
3
4
5
6
# FEATURE: CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM

[ -n "$d" ] || d=..
find "$d" -name \*works -type f -print0 | xargs -0 md5sum > logfile.gnu
find "$d" -name \*works -type f -print0 | busybox xargs -0 md5sum > logfile.bb
diff -u logfile.gnu logfile.bb