When attempting to run a Python script, for example:
python test.py --test 'Test'
it appeared that getopt was failing. And printing sys.argv revealed:
['test.py', '\xe2\x80\x94-test', '\xe2\x80\x9cTest\xe2\x80\x9d']
I was copying and pasting the command into Terminal on OS X. The command was in a text file that may have been saved on Windows. What's a possible reason for this, as I haven't had this issue before?
If I retype the command in Terminal it works fine. Is there a way to process the arguments in the script so it interprets them correctly?
Your Windows editor replaced a regular dash with an em-dash, and the quotes with 'fancy' styled quoting:
Use a text-oriented editor next time; a word processor is liable to replace text with 'prettier' versions.
You could do
unicode.translate()
calls:Note that the shell will not parse whitespace correctly because it has no regular quotes to work with; you may want to translate your text file using the above method first, then paste the properly quoted strings into the shell.