/bin/rm: Argument list too long
Posted by admin in Unix, tags: Argument list too long, errorI got error when trying to remove thousands of file inside a directory. The way you fix this is
find . -name '*.jpg' | xargs rm
Posts Tagged “Argument list too long”
Nov
18
2008
/bin/rm: Argument list too longPosted by admin in Unix, tags: Argument list too long, errorI got error when trying to remove thousands of file inside a directory. The way you fix this is
|