I want to execute a shell script file from within Python. I am currently using Envoy to do this:
envoy.run('./scripts.sh')
But it throws me a No such file or directory
error.
I am wondering, under which path is the above file executed? How can I make the above script run? It is located in the same directory as the Python script.