How to run the following command using subprocess.Popen?
mysqldump database_name table_name | bzip2 > filename
I know os.system() can do the job but I dont want to wait for the dump to finish in main program.
|
1
|
|
|
|
|
|
You want the shell=True option to make it execute shell commands:
which yeilds:
|
||
|
|