18
Nov
/bin/rm: Argument list too long
I got error when trying to remove thousands of file inside a directory. The way you fix this is
find . -name '*.jpg' | xargs rm
By Glen Lumanau|Unix|Be the first to comment!
I got error when trying to remove thousands of file inside a directory. The way you fix this is
find . -name '*.jpg' | xargs rm
0 Comments