Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 9/5/84; site lmef.UUCP Path: utzoo!watmath!clyde!bonnie!akgua!sol1!lmef!damon From: damon@lmef.UUCP (Damon Scaggs) Newsgroups: net.unix Subject: more on strange file names Message-ID: <137@lmef.UUCP> Date: Thu, 1-Aug-85 19:59:26 EDT Article-I.D.: lmef.137 Posted: Thu Aug 1 19:59:26 1985 Date-Received: Sun, 4-Aug-85 08:38:36 EDT Distribution: net Organization: LMEF; Lincoln, NE Lines: 15 A while back there was considerable discussion about how to delete files with names with the high bit set. Apparently the shell does strange things with this bit and it is lost somewhere between the keyboard and the unlink. If you know the inode of the file I think the following is the easiest way to remove it. Move to the directory it is in first: find . -inum (inode # of file) -exec /bin/rm {} \; Certainly this is better than clri followed by a fsck. find won't play games with the top bit. Just hope the file isn't in / ! -- Damon Scaggs {ihnp4,akgua}!sol1!lmef!damon