Hi, I'd like to know if there's a limit for xargs to execute removing files from list, e.g. this command:
Code: Select all
xargs -d '\n' -a /tmp/filelist rm
The file /tmp/filelist contains 6000 lines (paths to files) and above works OK, it's removing all listed files.
But what if it contains, let's say 6000000 lines of files to be removed, will it still work ?
Thanks,
Fred