Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!csd4.milw.wisc.edu!uakari.primate.wisc.edu!indri!ames!haven!adm!xadmx!rbj@dsys.ncsl.nist.gov From: rbj@dsys.ncsl.nist.gov (Root Boy Jim) Newsgroups: comp.unix.wizards Subject: Strange file system error Message-ID: <20462@adm.BRL.MIL> Date: 31 Jul 89 22:46:26 GMT Sender: news@adm.BRL.MIL Lines: 24 ? From: Chris Torek ? The other possible way to remove it is to use /etc/unlink (if you have ? it; if not, compile a one-line C program and run that). ? main() { exit(unlink("/the/bad/directory")); } A more general version is: main(c,v) char *v[]; { exit(c == 2 ? unlink(v[1]) : -1); } Its companion program, `link', is: main(c,v) char *v[]; { exit(c == 3 ? link(v[1],v[2]) : -1); } ? In any case, complain to Apple. And when you do, don't forget to mention The Lawsuit. ? In-Real-Life: Chris Torek, Univ of MD Comp Sci Dept (+1 301 454 7163) ? Domain: chris@mimsy.umd.edu Path: uunet!mimsy!chris Root Boy Jim Have GNU, Will Travel.