On 03/07/2003 @ 09:52, Arvind wrote:

> each time i issue the command, i am getting an error.
> 
> #  rm -rf *
> bash: /bin/rm: Argument list too long

There are too many files in the directory, and the shell cannot pattern match all of
them.  You can do one of two things:

    ls -1 |xargs rm -rf

or cd into the parent dir, and then rm -rf <the dir containing all those files>.

Regards,
-- 
Sahil Tandon <[EMAIL PROTECTED]>
http://people.brandeis.edu/~sahil


-------------------------------------------------------
This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger 
for complex code. Debugging C/C++ programs can leave you feeling lost and 
disoriented. TotalView can help you find your way. Available on major UNIX 
and Linux platforms. Try it free. www.etnus.com
_______________________________________________
linux-india-help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/linux-india-help

Reply via email to