Milind
Milind

Reputation: 11

Run shell script(.csh) in cygwin using python

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

Answers (1)

Will Watson
Will Watson

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

Related Questions