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

xargs-works « xargs « testsuite - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c95869e89d52102c21d703afbf4bc237d1000c13 (plain)
1
2
3
4
[ -n "$d" ] || d=..
find "$d" -name \*works -type f | xargs md5sum > logfile.gnu
find "$d" -name \*works -type f | busybox xargs md5sum > logfile.bb
diff -u logfile.gnu logfile.bb