diff options
Diffstat (limited to 'busybox/testsuite/xargs/xargs-works')
-rw-r--r-- | busybox/testsuite/xargs/xargs-works | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/busybox/testsuite/xargs/xargs-works b/busybox/testsuite/xargs/xargs-works new file mode 100644 index 0000000..c95869e --- /dev/null +++ b/busybox/testsuite/xargs/xargs-works @@ -0,0 +1,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 |