IT
Read more — Linux Bulk File Deletion
Linux Bulk File Deletion
When the “/usr/bin/rm: arg list too long” error occurs while deleting many files You can delete them with the command below. find . | xargs -n 1000 rm -f
When the “/usr/bin/rm: arg list too long” error occurs while deleting many files You can delete them with the command below. find . | xargs -n 1000 rm -f