Reputation: 11
I have created a python tool which generates shell script & run it using command
subprocess.Popen("csh -l -c " + os.environ["TEMP"] + "\qa_tool\oos_script_generator.csh")
This runs in c-shell. Is there any way I can run same script in cygwin?
Upvotes: 0
Views: 465
Reputation: 156
You may have figured this out by now, but I believe tcsh is available in the package list, have you tried installing it to see if it fits your need?
Upvotes: 0