Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • Ok, so it's for all commands, not just the one. Commented Jun 15, 2015 at 9:44
  • The limit is one for the current shell, for the current command line. If you open many shells each will have this limit. xargs will call rm as many times as necessary, distributing the many file names that are fed to it by the find command such that the limit is not exceeded (each of the rm commands will be limited by the commandline length limit). Commented Jun 15, 2015 at 9:53