Tagged Questions
8
votes
3answers
766 views
Python piping on Windows: Why does this not work?
I'm trying something like this
Output.py
print "Hello"
Input.py
greeting = raw_input("Give me the greeting. ")
print "The greeting is:", greeting
At the cmd line
Output.py | Input.py
But it ...
0
votes
1answer
93 views
piping commands into buffer on windows
I have the following code for linux:
char pi[512];
FILE *fp1;
char pingStr[250];
sprintf(pingStr, "ping %s", info->server);
fp1 = popen(pingStr,"r");
fgets(pi,512,fp1);
...
0
votes
2answers
347 views
Using MySQL in Powershell, how do I pipe the results of my script into a csv file?
In PowerShell, how do I execute my mysql script so that the results are piped into a csv file? The results of this script is just a small set of columns that I would like copied into a csv file.
I ...