Linked Questions
18 questions linked to/from Multi-line string with extra space (preserved indentation)
0 votes
0 answers
713 views
Import large table in mysql
I'm doing a import in mysql with this bash script: ddl="set names utf8; " ddl="$ddl set global net_buffer_length=1000000;" ddl="$ddl set global net_write_timeout=1000000;" ddl="$ddl set global ...
0 votes
1 answer
151 views
Executing python code if some statement is true in bash [duplicate]
I have the following code where if a certain condition is true i try to execute a python code inside a shell script. The issue is i keep getting an IndentationError: unexpected indent and i am not ...
0 votes
1 answer
49 views
Storing arbitrary git patches generated in Python in a file inside a Docker container with its Python SDK
The Problem The patch is generated in Python and then I would like to persist this data in changes.patch inside the Docker container so that I can subsequently apply the patch and commit the changes ...