ls -li
Use find command as follows to delete the file if the file has inode number 4063242:

$ find . -inum 4063242 -delete
OR
$ find . -inum 4063242 -exec rm -i {} \;

相关文章: