adam.nz aboutpostsprojectscontact
# ls -id *; find . -inum <inode number> -ok rm {} ;
If you really can’t delete a file any other way. ls -id means don’t go into directories and print out the inode of each file. Then we take the inode of the weird file and tell find to delete that inode.