19

If you create a file on UNIX/Linux with special characters, such as touch \"la*, you can't remove it with rm "la*. You have to use the inode number (you can if you add the \ before the name, I know, but you'd have to guess as a user that it was used in the file creation).

I checked the manpage for rm, but there's no mention of the inode number. Doing rm inodenumber doesn't work either.

What is the command for this?

I say Reinstate Monica
  • 25,487
  • 19
  • 95
  • 131
KdgDev
  • 5,468
  • 18
  • 51
  • 72

7 Answers7

30

Some other methods include:

escaping the special chars:

[~]$rm \"la\*

use the find command and only search the current directory. The find command can search for inode numbers, and has a handy -delete switch:

[~]$ls -i
7404301 "la*

[~]$find . -maxdepth 1 -type f -inum 7404301
./"la*

[~]$find . -maxdepth 1 -type f -inum 7404301 -delete
[~]$ls -i
[~]$
John T
  • 163,373
  • 27
  • 341
  • 348
6

I use this always:

# retrieve the inode number
sav@ubuntu:~$ ls -il
total 8
415984 -rw-rw-r-- 1 sav sav    0 Apr 11 10:07 '"la*'
417981 drwxrwxr-x 2 sav sav 4096 Apr 11 09:44  ]rf
415985 -rw-rw-r-- 1 sav sav   11 Apr  8 16:24  text

# use find/delete
find . -inum 415984 -delete
saviour123
  • 181
  • 1
  • 2
5

Maybe I'm missing something, but...

rm '"la*'

Anyways, filenames don't have inodes, files do. Trying to remove a file without removing all filenames that point to it will damage your filesystem.

Ignacio Vazquez-Abrams
  • 111,361
  • 10
  • 201
  • 247
  • well, this would only work for the current directory, but it's indeed a valid cause for concern. Stupid that I missed that. Still doesn't remove the file though. – KdgDev May 19 '10 at 23:01
  • 3
    Of course not. The file is only removed when there are no more filenames pointing to it and no processes holding it open. – Ignacio Vazquez-Abrams May 19 '10 at 23:03
5

If you really want to do this - and your use case doesn't really look like you need to at all, you might try file system debugging tools. If you're willing to lose everything, that is.

For example, for ext2/3/4 the debugfs command has a "kill_file" option that seems to take an inode. As mentioned in other responses, this will damage your file system, as there will be directory entries pointing to a non-existent file. Running fsck afterwards may be able to repair this. It's unlikely you can do this on a mounted file system.

But I'd strongly recommend you just use appropriate escaping/quoting and delete such files with the regular rm command as mentioned in an earlier response - and use rm -i for extra safety when dealing with filenames containing globbing characters like *

3

You can delete files starting with a dash by calling rm -- filename.

uli42
  • 162
  • 3
2

The challenge I had was removing a filename that starts with a dash - rm always wants to interpret it as a hostname. I solved this by using:

rm ./-g4xxx
I say Reinstate Monica
  • 25,487
  • 19
  • 95
  • 131
  • Perfect. Exactly what I was looking for. Note that the attempt to escape the dash does not work (at least it doesn't under Ubuntu 18.04 where I tried it in vain). – András Aszódi Apr 08 '20 at 17:33
  • @LaryxDecidua Escaping is not what is needed here : unescape is done by the *shell*, before passing the argument to the command. And rm won't unescape its args, so a double-escaping "rm \\\\-xxx" (4 backslashes, to escape the backslahes themselves...) will only result in rm trying to remove a file named "\-xxx" which doesn't exist. – Pierre-Olivier Vares Apr 23 '21 at 16:03
1

While I strongly recommend the "escape the special characters" approach, there's always the clri command when you really want fixable filesystem corruption.

mpez0
  • 2,792
  • 1
  • 16
  • 20