Delete a file named " \ " ?

How do you delete a file named "\"....
please help as i am unable to delete it..

Thanks & Regards
Harish

try this!
rm '\'

Is the filename just '\' ? Is so,

rm '\'

Another approach is to remove files with inode number.

To find out the inode, use -i option with ls

ls -i

To remove the file, use -inum option with find

find . -inum [inode] -exec rm -i {} \;