Delete mass files in Linux

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

guest
0 Comments
Inline Feedbacks
View all comments