I understand, we can execute Linux Shell Commands using subprocess
import subprocess
subprocess.call(["ls", "-l"])
What if i want to run CTRL+C action over the terminal?
My Use Case is:
1> Open a linux screen
2> Run a command over first window
3> Then create a window in the same screen
4> Run another command over the second window
It is pretty obvious i want to automate some part of my daily routine.