How can I copy files with names containing spaces and UNICODE, when using a shell script?

Posted by LOlliffe on Stack Overflow See other posts from Stack Overflow or by LOlliffe
Published on 2010-03-31T05:55:18Z Indexed on 2010/03/31 6:03 UTC
Read the original article Hit count: 444

Filed under:
|
|
|
|

I have a list of files that I'm trying to copy and move (using cp and mv) in a bash shell script. The problem that I'm running into, is that I can't get either command to recognize a huge number of files, seemingly because the filenames contain spaces and/or unicode characters. I couldn't find any switches to decode/re-encode these characters. Instead, for example, if I copy "file name.xml", I get "*.xml" and a script error that the file wasn't found for my result. Does anyone know settings or commands that will deal with these files?

© Stack Overflow or respective owner

Related posts about unicode

Related posts about files