Posts Tagged ‘Argument list too long’
/bin/rm: Argument list too long
Tuesday, November 18, 2008 11:11 No CommentsI got error when trying to remove thousands of file inside a directory. The way you fix this is find . -name ‘*.jpg’ | xargs rm
I got error when trying to remove thousands of file inside a directory. The way you fix this is find . -name ‘*.jpg’ | xargs rm