Re: weird files

2002-09-20 Thread Unix Tools
use the pilot software. I think you can install it from ports - Original Message - From: "mingo lu" <[EMAIL PROTECTED]> To: "freebsd-questions" <[EMAIL PROTECTED]> Sent: Friday, September 20, 2002 08:06 AM Subject: weird files > Hi: > > i have two weird files under my home directory;

Re: weird files

2002-09-20 Thread Matthew Seaman
On Thu, Sep 19, 2002 at 07:36:50PM -0700, mingo lu wrote: > i have two weird files under my home directory; one is > file named "-bash.gmon" and another one is "xy ds". > how could i remove them? rm just won't work ... There's two different gotchas you're experiencing here. i) File names that s

Re: weird files

2002-09-20 Thread Oliver Fromme
mingo lu <[EMAIL PROTECTED]> wrote: > i have two weird files under my home directory; one is > file named "-bash.gmon" and another one is "xy ds". > how could i remove them? rm just won't work ... Filenames that start with a dash can be disarmend by prepending the directory (just "./" if it's

Re: weird files

2002-09-19 Thread M.T.
On Thu, 19 Sep 2002, mingo lu wrote: > Hi: > > i have two weird files under my home directory; one is > file named "-bash.gmon" and another one is "xy ds". > how could i remove them? rm just won't work ... rm 'xy ds' -bash.gmon $.02, /Mikko To Unsubscribe: send mail to [EMAIL PROTECTED]

Re: weird files

2002-09-19 Thread Peter Leftwich
On Thu, 19 Sep 2002, mingo lu wrote: > thanks. actually i did this before: Try the command I gave you. > freebiebsd@ rm -rf `\-bash.gmon` If you use apostrophes that start at top left and go down to lower right such as this: `` the text between them is interpreted by your shell as a command wit

Re: weird files

2002-09-19 Thread Peter Leftwich
On Thu, 19 Sep 2002, mingo lu wrote: > Hi: i have two weird files under my home directory; one is > file named "-bash.gmon" and another one is "xy ds". > how could i remove them? rm just won't work ... > tia What error does rm give you? Have you tried `rm -i \-bash\.gmon` or `rm -i xy\ ds`? If