9

I have several files with encoding issues in their file names (German umlauts, burned on CD with Windows, read by Windows and synced to Linux with Seafile. Something, somewhere went wrong...). Bash and zsh only show "?" instead of umlauts, stat shows something like

$ stat Erg�nzung.doc 
File: ‘Erg\344nzung.doc’
Size: 2609152         Blocks: 5096       IO Block: 4096   regular file
Device: 806h/2054d      Inode: 12321475    Links: 1

I can enter the filename only with autocompletion. How do I rename the file? The affected files seem to be unreadable by LibreOffice (or other programs for other file types), they complain about "No such file or device".

I was thinking about mv --by-inode 12321475 Ergänzung.doc, but there's no --by-inode switch for mv. What else can I do?

Jasper
  • 3,628

3 Answers3

16

You could try:

find . -inum 12321475 -exec mv {} new-filename \;

or

find . -inum 12321475 -print0 | xargs -0 mv -t new-filename

Generally I prefer xargs over exec. Google for why. It's tricky though. See Find -exec + vs find | xargs. Which one to choose?

3

There is a utility convmv for this type of problem. It allows you to change the encoding of a filename from eg windows cp1256 to utf8, etc.

meuh
  • 51,383
3

Just for the record, the correct xargs -0 usage is:

find . -inum 12321475 -print0 | xargs -0 -I '{}' mv '{}' new-filename

but as already pointed out it wasn't necessary anyway.