On Tue, 29 Aug 2000 [EMAIL PROTECTED] wrote:

>I have managed to runout of inodes on a partition du to a buggy routine.
>
>I know what I want to delete, but when I do rm -f * in the problem
>directory it comes back with "Argument list too long"
>
>Can anyone think of a way around this one?

Use this instead:

ls | xargs rm -f

Or if you want to do "rm -rf *" use:

find . | xargs rm -f

TTYL


--
Mike A. Harris                                     Linux advocate     
Computer Consultant                                  GNU advocate  
Capslock Consulting                          Open Source advocate

"A Firewall is really much like a sophisticated traffic cop; it detects and
stops unauthorized or suspicious movement in or out of the network. But
security is more than a Firewall; it's a process. You can't just put in a
Firewall and think you're secure."



_______________________________________________
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list

Reply via email to