linux - renaming files with strange unicode names -


recently downloaded files website, names contain strange unicode characters, console doesn't show them properly. want rename these files able use these files, following error:

mv: cannot stat`filename': no such file or directory 

but sure these files exist. wonder how can rename these files, properly. ideas?

  • using globbing characters (like ? or *): mv *some-typeable-and-unique-substring* ...
  • using tab-completion of favourite shell: start typing mv, beginning of filename, press tab, , can enter second parameter.

if there other files in directory, might have move them directory able use tab-completion or wildcards.


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -

php - Accessing static methods using newly created $obj or using class Name -