Supprimer un fichier à partir de son inode.
$ find . -inum <inode> -exec rm -i {} \; (1)
1 | It’s possible to get the <inode> of a file via ls --inode . |
GNU+Linux command memo
Supprimer un fichier à partir de son inode.
$ find . -inum <inode> -exec rm -i {} \; (1)
1 | It’s possible to get the <inode> of a file via ls --inode . |