Path: utzoo!attcan!uunet!samsung!usc!zaphod.mps.ohio-state.edu!uakari.primate.wisc.edu!ames!excelan!unix!hplabs!hpl-opus!hpccc!hpcc01!hpwrce!ted From: ted@hpwrce.HP.COM ( Ted Johnson) Newsgroups: comp.unix.wizards Subject: Re: How to delete a file with ^? chars in the name? Message-ID: <690003@hpwrce.HP.COM> Date: 11 Jan 90 21:54:06 GMT References: <7711@unix.SRI.COM> Organization: Ye Olde Salt Mines Lines: 15 >I have a file which is named ^?^?^?H01.b (delete character?) and can't >find a way to delete it. An ls -s on the directory produces: > > .. ... (other files) > 1 ???H01.b 1)do an "ls -i" to get the inode number of the file. 2)from the directory that the offensive file is in, do: find . -inum N -exec rm {} \; where N is the inode number of that file. -Ted