Sometimes we need to delete a special character file, which we can not delete with normal rm command.So here is the solution...delete it with the help inode number.
$find . -inum __inode number from ls -i of the file __ -exec rm {} \;
Farmer, Student, Entrepreneur, Corporate Trainer
Sometimes we need to delete a special character file, which we can not delete with normal rm command.So here is the solution...delete it with the help inode number.
$find . -inum __inode number from ls -i of the file __ -exec rm {} \;