On Sat, 23 Dec 2000, Chris Wedgwood wrote:
> rm probably stat'd the file beforing removing it -- and failed,
> because it's either old or uses and old library (which isn't LFS
> aware)
If that's true, then the following C programlet should remove the file:
Replace "huge-file-name" with the full path of your file, it needs to stay
in quotes.
---
#include <stdio.h>
#include <stdlib.h>
int main()
{
unlink("huge-file-name");
return 0;
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/