How to call sed
command from python on windows?
On Linux, I can do it like this:
import subprocess
subprocess.call("sed command")
How to do it on windows?
There is no sed
on windows.
How to call sed
command from python on windows?
On Linux, I can do it like this:
import subprocess
subprocess.call("sed command")
How to do it on windows?
There is no sed
on windows.