Delete mass files in Linux
When deleting mass files, “/usr/bin/rm: arg list too long” error occurs
You can delete it with the command below.
find . | xargs -n 1000 rm -f
When deleting mass files, “/usr/bin/rm: arg list too long” error occurs
You can delete it with the command below.
find . | xargs -n 1000 rm -f
Leave a Reply