Path: utzoo!utgpu!news-server.csri.toronto.edu!rutgers!mephisto!uflorida!winnie!zach!tcurrey From: tcurrey@zach.fit.edu ( Thomas E. Currey) Newsgroups: comp.unix.admin Subject: Re: help removing a file Message-ID: <1372@winnie.fit.edu> Date: 6 Sep 90 19:57:38 GMT References: <1990Sep5.180847.21767@zaphod.mps.ohio-state.edu> <1990Sep6.163646.17499@dg-rtp.dg.com> Sender: usenet@winnie.fit.edu Reply-To: tcurrey@zach.UUCP ( Thomas E. Currey) Distribution: usa Organization: Florida Institute of Technology, ACS, Melbourne, FL Lines: 13 If its a file try: rm ./... if its a directory: rm -R ./... Because of the ascii character set the '.' is before the '*' and is therefore not picked up but rm. other variations: rm -R ./??. rm -R ./..? Be carefu, they can remove much more.