If I do:
python -c 'print("Hello");print("Hello") '
python -c 'print("Hello")'
It works as expected. However,
python -c 'print("Hello") \n print("Hello") '
Fails.
File "<string>", line 1
print("Hello") \n print("Hello")
^
SyntaxError: unexpected character after line continuation character
How to handle multi-line (and indented) python code using the -c option?