At 10:34 AM 09/13/2001 -0500, you wrote:

>Heya,
>
>Somehow I ended up with a file named "W CD!" in my account.  When I try to
>view it or remove it or rename it with a command like the following:
>
>         rm "W CD!"
>
>I get a message stating:
>
>         bash: !": event not found
>
>Any ideas?

Did you try escaping the exclamation point? Like this:

         rm "W CD\!"

Dave