Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!burl!ulysses!mhuxr!mhuxn!ihnp4!houxm!whuxl!mike From: mike@whuxl.UUCP (BALDWIN) Newsgroups: net.unix-wizards Subject: Re: Summary of how to remove file with NULL names Message-ID: <1106@whuxl.UUCP> Date: Wed, 23-Apr-86 13:31:39 EST Article-I.D.: whuxl.1106 Posted: Wed Apr 23 13:31:39 1986 Date-Received: Fri, 25-Apr-86 01:26:11 EST References: <306@chinet.UUCP> Distribution: net Organization: AT&T Bell Laboratories, Whippany Lines: 15 > Here is the consensis of the net on how to remove files with > strange and weird characters in there names. Thanks to all the > below who responded to my queery. > > [rmjunk.c to remove files with eighth bit set] There is a much simpler way to do this than using od -c and rmjunk. First, find the i-number of the file using "ls -bi". The -b flag prints funny chars in \ddd notation (BSD or SVR2). Then, if the i-number is 341, say, do "find . -inum 341 -exec rm {} \;" to remove it. -- Michael Baldwin (not the opinions of) AT&T Bell Laboratories {at&t}!whuxl!mike