I do know how we pass one variable from python to c shell script but I am having trouble in passing multiple python variable to c shell script. Please let me know how do we achieve this. Here is the link where I came to know to pass single variable from python to c shell script.
Pass each argument as a separate argv entry:
By contrast, if you want to pass multiple variables through the environment, they should both be keys in the
|
|||||
|
shlex.split()
rather explicitly shouldn't be used in this case. – Charles Duffy Jan 30 '15 at 14:41