Remove filenames beginning with multiple dots

hi all,

I want to remove filenames beginning with multiple dots.how I can do this.

Thanks in advance

rm ..?*

---------- Post updated at 07:48 PM ---------- Previous update was at 07:47 PM ----------

With single dot:

rm .[^.]* 

Hi YAZU,

Thank you for ur quick reply.

This command doesn't work.

Try :

rm .[!.]*

Jean-Pierre.

Another way, by quoting:

rm "....efs"

Those quotes serve no purpose. The dot is not a sh metacharacter.

Regards,
Alister