(command)
| 688 | |
| 689 | |
| 690 | def _escape_quotes(command): |
| 691 | # For windows we have different rules for escaping. |
| 692 | # First, double quotes must be escaped. |
| 693 | command = command.replace('"', '\\"') |
| 694 | # Second, single quotes do nothing, to quote a value we need |
| 695 | # to use double quotes. |
| 696 | command = command.replace("'", '"') |
| 697 | return command |
| 698 | |
| 699 | |
| 700 | def aws( |