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, presstab
, , can enter second parameter.
if there other files in directory, might have move them directory able use tab-completion or wildcards.
Comments
Post a Comment