I created a file named "x" with 8388608 lines, each line being the char "x"
Code: Select all
# wc x
8388608 8388608 16777216 x
#
Code: Select all
# cat /tmp/x | xargs -d "\n" | wc
129 8388608 16777216
#
So xargs echoed "x" 8388608 times. using the default echo command 129 times.
The -l switch would force the echo (or rm) command to be used 8388608 times vs. 129 times.
Code: Select all
# cat /tmp/x | head -n 5 | xargs -t -d "\n" | wc
echo x x x x x
1 5 10
# cat /tmp/x | head -n 5 | xargs -t -l -d "\n" | wc
echo x
echo x
echo x
echo x
echo x
5 5 10
#
The rm command should work the same way.
To make the test file:
Code: Select all
echo x > x
cat x >> y ; cat x >> y ; mv y x ; wc x
cat x >> y ; cat x >> y ; mv y x ; wc x
cat x >> y ; cat x >> y ; mv y x ; wc x
etc etc