Was wondering how you\'d do the following in Windows:
From a c shell script (extension csh), I\'m running a Python script within an \'eval\' method so that the outpu
If it's in cmd.exe, using a temporary file is the only option [that I know of]:
cmd.exe
python -c "print(\"Hi\")" > temp.cmd call temp.cmd del temp.cmd