active questions tagged stdin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T07:51:40Zhttp://stackoverflow.com/feeds/tag/stdinhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1805840/arrow-key-via-stdin0arrow key via stdinunknown (google)2009-11-26T21:53:12Z2009-11-26T22:52:49Z
<p>Hi everybody,</p>
<p>I'm trying to send an arrow key via the stdin to the bash:</p>
<p>cat | /bin/bash</p>
<p>then i am typing "echo hi" => "hi" appears on the console (of course without the quotes)
then i press the arrow key up => ^[[A command not found appears</p>
<p>Is it possible to send an arrow key to an program via the stdin ?</p>
<p>The reason why i am asking is: I want to control the bash from another programm. I would like to send arrow keys to the bash</p>
http://stackoverflow.com/questions/1787335/exec-text-redirection-for-php-on-windows1exec() text redirection for PHP on Windowsjaywon2009-11-24T02:03:54Z2009-11-24T02:09:32Z
<p>I have been following the post below trying to hook my SubVersion installation to my Mantis bug tracker.</p>
<p><a href="http://blog.bonetree.net/2008/09/how-to-integrate-subversion-and-mantis/" rel="nofollow">How To Integrate Subversion and Mantis</a></p>
<p>Everything works fine until the last line where it calls the Mantis checkin.php script and feeds it the message string that has been created in the script.</p>
<pre><code>exec(CHECKIN . " <<< \"$message\"");
</code></pre>
<p>I understand the purpose of the line is to send the message string to <strong>STDIN</strong> which Mantis' <strong>checkin.php</strong> reads in order to check for an appropriate matching string and update the Mantis tracking database.</p>
<p>Anyways, I know the above convention is for a Linux installation. My question is how would I use the PHP <strong>exec()</strong> function in a Windows environment to call the PHP script(checkin.php) and pass the string built in this program to <strong>STDIN</strong>.</p>
<p><strong>NOTE:</strong> I would prefer not to change the logic in checkin.php to read from STDIN.</p>
<p>Thanks!!</p>
http://stackoverflow.com/questions/1287383/not-able-to-use-7-zip-to-compress-stdin-and-output-with-stdout0Not able to use 7-Zip to compress stdin and output with stdout?acidzombie242009-08-17T11:12:31Z2009-11-19T13:10:17Z
<p>I get the error "Not implemented".</p>
<p>I want to compress a file using <a href="http://en.wikipedia.org/wiki/7-Zip" rel="nofollow">7-Zip</a> via stdin then take the data via stdout and do more conversions with my application. In the <a href="http://pwet.fr/man/linux/commandes/7z" rel="nofollow">man page</a> it shows this example:</p>
<p><a href="http://pwet.fr/man/linux/commandes/7z" rel="nofollow">% echo foo | 7z a dummy -tgzip -si -so > /dev/null</a></p>
<p>I am using Windows and C#.</p>
<p>Results:</p>
<pre><code>7-Zip 4.65 Copyright (c) 1999-2009 Igor Pavlov 2009-02-03
Creating archive StdOut
System error:
Not implemented
</code></pre>
<p>Code:</p>
<pre><code>public static byte[] a7zipBuf(byte[] b)
{
string line;
var p = new Process();
line = string.Format("a dummy -t7z -si -so ");
p.StartInfo.Arguments = line;
p.StartInfo.FileName = @"C:\Program Files\7-Zip\7z.exe";
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.RedirectStandardInput = true;
p.Start();
p.StandardInput.BaseStream.Write(b, 0, b.Length);
p.StandardInput.Close();
Console.Write(p.StandardError.ReadToEnd());
//Console.Write(p.StandardOutput.ReadToEnd());
return p.StandardOutput.BaseStream.ReadFully();
}
</code></pre>
<p>Is there another simple way to read the file into memory? </p>
<p>Right now I can 1) write to a temporary file and read (easy and can copy/paste some code) 2) use a file pipe (medium? I have never done it) 3) Something else.</p>
http://stackoverflow.com/questions/1758238/compress-files-while-reading-data-from-stdin1Compress files while reading data from STDINOctopus2009-11-18T18:56:46Z2009-11-18T19:27:20Z
<p>Is it possible to compress (create a compressed archive) data while reading from stdin on Linux.</p>
http://stackoverflow.com/questions/1744989/read-from-file-or-stdin3Read from File, or STDINRyan Rosario2009-11-16T21:32:22Z2009-11-16T21:54:11Z
<p>I've written a command line utility that uses getopt for parsing arguments given on the command line. I would also like to have a filename be an optional argument, such as it is in other utilities like grep, cut etc. So, I would like it to have the following usage</p>
<pre><code>tool -d character -f integer [filename]
</code></pre>
<p>How can I implement the following?</p>
<ul>
<li>if a filename is given, read from the file.</li>
<li>if a filename is not given, read from STDIN.</li>
</ul>
http://stackoverflow.com/questions/1729775/how-to-send-backspace-using-sendmessagec-to-cmd-exe1How to send backspace using sendmessage(C#) to cmd.exeMurali2009-11-13T15:06:54Z2009-11-13T15:24:35Z
<p>I am trying to send keystrokes to cmd.exe that I launch from my app. In doing so, I am able to send all the keyboard characters, but if I try to send Backspace, it doesnt seem to take effect. The following is the code snippet to send message to cmd.exe:</p>
<pre><code>SendMessage((int)shell.MainWindowHandle, WM_KEYDOWN, ((int)e.KeyCode), 0);
SendMessage((int)shell.MainWindowHandle, WM_KEYUP, ((int)e.KeyCode), 0);
</code></pre>
<p>Any idea why this wouldnt work? What is the best way to send to the stdin of cmd.exe from a C# app?</p>
<p>thanks in advance </p>
http://stackoverflow.com/questions/1726721/im-trying-to-split-a-string-by-a-delimiter-but-it-doesnt-work-why1I'm trying to split a string by a delimiter but it doesn't work, why?goe2009-11-13T02:17:20Z2009-11-13T02:42:56Z
<p>Hi All,</p>
<p>I wrote below code to readin line by line from stdin ex.</p>
<pre>
city=Boston;city=New York;city=Chicago\n
</pre>
<p>and then split each line by ';' delimiter and print each record.</p>
<p>But for some reason the "record" pointer comes back always null. Why?</p>
<pre><code> char del = ';';
char input[BUFLEN];
while(fgets(input, BUFLEN, fp)) {
input[strlen(input)-1]='\0';
char* record = strtok(input, &del);
while(record) {
printf("Record: %s\n",record);
record = strtok(NULL, &del);
}
}
</code></pre>
http://stackoverflow.com/questions/1726590/python-stdin-eof0python stdin eofonline2009-11-13T01:32:15Z2009-11-13T01:46:57Z
<p>Hi all,</p>
<p>How to pass python eof to stdin </p>
<p>here is my code </p>
<pre><code>p = Popen(commd,stdout=PIPE,stderr=PIPE,stdin=PIPE)
o = p.communicate(inputstring)[0]
</code></pre>
<p>when i run the commd in command line after i input the inputstring windows still expecting a Ctrl+Z to finish accepting input.</p>
<p>How can I pass eof or Ctrl+Z in program?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1348639/how-can-i-reinitialize-perls-stdin-stdout-stderr4How can I reinitialize Perl's STDIN/STDOUT/STDERR?Josh2009-08-28T18:29:39Z2009-11-12T07:49:51Z
<p>I have a Perl script which forks and daemonizes itself. It's run by cron, so in order to not leave a zombie around, I shut down STDIN,STDOUT, and STDERR:</p>
<pre><code>open STDIN, '/dev/null' or die "Can't read /dev/null: $!";
open STDOUT, '>>/dev/null' or die "Can't write to /dev/null: $!";
open STDERR, '>>/dev/null' or die "Can't write to /dev/null: $!";
if (!fork()) {
do_some_fork_stuff();
}
</code></pre>
<p>The question I have is: I'd like to restore at least STDOUT after this point (it would be nice to restore the other 2). But what magic symbols do I need to use to re-open STDOUT as what STDOUT used to be?</p>
<p>I know that I could use "/dev/tty" if I was running from a tty (but I'm running from cron and depending on stdout elsewhere). I've also read tricks where you can put STDOUT aside with <code>open SAVEOUT,">&STDOUT"</code>, but just the act of making this copy doesn't solve the original problem of leaving a zombie around.</p>
<p>I'm looking to see if there's some magic like <code>open STDOUT,"|-"</code> (which I know isn't it) to open STDOUT the way it's supposed to be opened.</p></p>
http://stackoverflow.com/questions/1711525/why-this-program-fails-sometimes2Why this program fails (sometimes)?Łukasz Lew2009-11-10T21:57:22Z2009-11-11T15:18:30Z
<pre><code>#include <cstdio>
#include <QtCore/QProcess>
int main (int argc, char** argv) {
// if we remove 3 following lines, the problem described below doesn't exists!!
QProcess process;
process.start ("asdqwe"); // doesn't matter what we try to execute here.
process.waitForStarted (1000);
while (true) {
char buf[100];
if (scanf ("%s", buf) == EOF) { // it looks like stdin is closed!
printf("FAIL\n");
return 1;
}
printf ("%s\n", buf);
}
return 0;
}
</code></pre>
<p>This code is just a snippet to show the problem. In the full application I need read/write communication with process.</p>
<p>I compile it with:</p>
<pre><code>g++ -o out ./main.cpp -I /usr/include/qt4/ -lQtCore
</code></pre>
<p>And execute it from bash command line in terminal.</p>
<p>Why this program sometimes prints FAIL and sometimes will stay in loop?</p>
<p><strong>Edit:</strong>
This is not question about scan/printf.
The same problem is if I use iostreams + string. This question is about interaction of QProcess with file descriptors of parent process.</p>
http://stackoverflow.com/questions/1706678/ncurses-and-stdin-blocking-problem1ncurses and stdin blocking problemunknown (google)2009-11-10T09:36:19Z2009-11-10T10:16:00Z
<p>I have stdin in a select() set and I want to take a string from stdin whenever the user types it and hits ENTER.</p>
<p>But select is triggering stdin as ready to read before ENTER is hit, and, in rare cases, before anything is typed at all. This hangs my program on getstr() until I hit ENTER.</p>
<p>I tried setting nocbreak() and it's perfect really except that nothing gets echoed to the screen so I can't see what I'm typing. And setting echo() doesn't change that.</p>
<p>I also tried using timeout(0), but the results of that was even crazier and didn't work.</p>
http://stackoverflow.com/questions/1598985/c-read-binary-stdin2C read binary stdinrlb.usa2009-10-21T06:04:30Z2009-10-23T19:01:19Z
<p>Hey guys, I'm trying to build an instruction pipeline simulator and I'm having a lot of trouble getting started. What I need to do is read binary from stdin, and then store it in memory somehow while I manipulate the data. I need to read in chunks of exactly 32 bits one after the other.</p>
<p>How do I read in chunks of exactly 32 bits at a time? Secondly, how do I store it for manipulation later?</p>
<p>Here's what I've got so far, but examining the binary chunks I read further, it just doesn't look right, I don't think I'm reading exactly 32 bits like I need.</p>
<pre><code>char buffer[4] = {0,0,0,0}; //initialize to 0
unsigned long c = 0;
int bytesize = 4; //read in 32 bits
while( fgets(buffer, bytesize, stdin) ){
memcpy( &c, buffer, bytesize); //copy the data to a more usable structure for bit manipulation later
//more stuff
buffer[0]=0; buffer[1]=0; buffer[2]=0; buffer[3]=0; //set to zero before next loop
}
fclose(stdin);
</code></pre>
<p>How do I read in 32 bits at a time (they are all 1/0, no \newlines etc), and what do I store it in, is char[] okay?</p>
<p>EDIT: I'm able to read the binary in but none of the answers produce the bits in the correct order - they are all mangled up, I suspect endianness and problems reading and moving 8 bits around ( 1 char) at a time - this needs to work on windows and C ... ?</p>
http://stackoverflow.com/questions/1610089/how-to-use-cp-from-stdin0How to use cp from stdin?Aaron2009-10-22T21:30:16Z2009-10-22T21:57:15Z
<h3>Note:</h3>
<p><code># cat /tmp/foo</code> - regular file</p>
<pre><code>/lib/a.lib
/lib/b.lib
/lib/c.lib
/lib/d.lib
</code></pre>
<p><hr /></p>
<p><code>cat /tmp/foo | xargs cp /tmp/fred</code></p>
<p><strong>cp: target /lib/d.lib is not a directory</strong></p>
http://stackoverflow.com/questions/1598131/how-do-i-go-about-flushing-stdin-here0How do I go about Flushing STDIN here?stdinflush2009-10-21T00:37:03Z2009-10-21T00:51:04Z
<p>I have a function (in C) that gets input from the user, (using scanf) stores it in an unsigned int, and returns the input to other functions that handle it:</p>
<pre><code>unsigned
int input(void)
{
unsigned int uin;
scanf("%u", &uin);
return val;
}
</code></pre>
<p>I was wondering, being as I ought to flush stdin, I'd want to use a while loop using getc, vis-a-vis:</p>
<pre><code>while (getc != '\n') {
...
}
</code></pre>
<p>But, I'm not sure of how to:</p>
<p>A) Do operations inside of getc, as in how I ought to handle checks and concatenate the value, to each character gotten, or, whether or not I'm to getc, and then concatenate from there, removing scanf entirely.</p>
<p>B) Whether this is even the most proper way to do this.</p>
<p>Could some kind person give me some tips and pointers :)</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1594940/java-dealing-properly-with-pipes-as-stdin0Java: dealing properly with pipes as stdinJason S2009-10-20T14:18:28Z2009-10-20T14:31:53Z
<p>I get a weird error ("The process tried to write to a nonexistent pipe.") if I stop reading from piped input, from a program that works fine for non-piped input. How can I avoid causing this error?</p>
<p>code:</p>
<pre><code>package com.example.test;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class PipeTest {
static public void main(String[] args) throws IOException
{
BufferedReader r = new BufferedReader(new InputStreamReader(System.in));
int i = 0;
while (i < 10)
{
String s = r.readLine();
if (s == null)
break;
++i;
System.out.println(i);
}
}
}
</code></pre>
<p>runtime output (testfile.txt is just a large text file with more than 10 lines):</p>
<pre><code>C:\proj\java\test-pipe\bin>java com.example.test.PipeTest < ../testfile.txt
1
2
3
4
5
6
7
8
9
10
C:\proj\java\test-pipe\bin>type ..\testfile.txt | java com.example.test.PipeTest
1
2
3
4
5
6
7
8
9
10
The process tried to write to a nonexistent pipe.
</code></pre>
http://stackoverflow.com/questions/1594251/how-to-check-if-stdin-is-still-opened-without-blocking0How to check if stdin is still opened without blocking?Basilevs2009-10-20T12:27:42Z2009-10-20T13:12:01Z
<p>I need my program written in pure C to stop execution when stdin is closed.</p>
<p>There is indefinite work done in program main cycle, and there is no way I can use blocking checks (like <code>getc()</code>) there (no data is supposed to arrive on stdin - it just stays opened for unknown time).</p>
<p>I intend to use described functionality in realization of network daemon hosted in inetd, xinetd or their analogs - it should emit data on stdout while connection stays opened and correctly finish work when it closes. Now my program is killed by hosting service as it won't stop after connection termination.</p>
<p>I wonder if <code>fctntl()</code> with <code>O_NONBLOCK</code> flag applied to stdin descriptor would allow me to use <code>read()</code> function in non-blocking mode? Should I use <code>select()</code> somehow?</p>
<p>P.S. The data is not supposed but might arrive to stdin. A way of non-blocking readout woould be an answer for the question.</p>
http://stackoverflow.com/questions/1582737/what-is-the-simplest-way-to-execute-arbitrary-process-with-stdin-stdout-forwarde1What is the simplest way to execute arbitrary process with stdin, stdout forwarded to a socket?Łukasz Lew2009-10-17T17:32:03Z2009-10-17T17:49:32Z
<p>I'm interested in two situations:</p>
<ul>
<li>How to do it from C++?</li>
<li>How to do it from system's shell?</li>
</ul>
<p>Answers for Linux, Windows and OSX are welcome.</p>
http://stackoverflow.com/questions/1580758/javaeclipse-how-do-you-debug-a-java-program-that-is-receiving-piped-redirected0Java+Eclipse: how do you debug a java program that is receiving piped/redirected stdin?Jason S2009-10-16T22:38:39Z2009-10-17T00:20:44Z
<p>I'm using Eclipse to develop a Java program, and figured I'd add an option to my program to parse stdin if there are no arguments. (otherwise it parses a file)</p>
<p>I am having problems if I execute <code>"somecommand | java -jar myjar.jar"</code> and went to debug... then realized I don't know how to start a process in Eclipse like that. And if I run it on the command prompt, I can't attach to a running process since the process starts immediately.</p>
<p>Any suggestions on how to debug?</p>
<p><strong>edit</strong>: see, the thing is, I wrote my program originally to take a filename argument. Then I figured it would be useful for it to take stdin as well, so I <em>did</em> abstract InputStream out of my program (as Mr. Queue suggests). It works fine operating on a file (<code>java -jar myjar.jar myfile</code>), but not operating when I run <code>type myfile | java -jar myjar.jar</code>. I suspect that there's something different in the two scenarios (eof detection is different?) but I really would like to debug.</p>
<pre><code>// overall program structure follows:
public static void doit(InputStream is)
{
...
}
public static void main(String[] args)
{
if (args.length > 0)
{
// this leaves out the try-catch-finally block,
// but you get the idea.
FileInputStream fis = new FileInputStream(args[0]);
doit(fis);
fis.close();
}
else
{
doit(System.in);
}
}
</code></pre>
http://stackoverflow.com/questions/1550997/c-createprocesswithloginw-redirecting-stdout0[C++] CreateProcessWithLoginW - Redirecting STDOUTChris T2009-10-11T15:47:21Z2009-10-11T17:41:55Z
<p>What I would like is to have the process start but have the input and output all be in the same console.</p>
<pre><code>if(CreateProcessWithLogonW(user,domain, pass, LOGON_WITH_PROFILE, NULL, cmd, 0, 0, 0, &sa, &pe))
{
printf("[~] Process spawned with PID %X\n", pe.dwProcessId);
}
else
{
printf("[!] Failed to create process. Error Code: %X\n", GetLastError());
}
</code></pre>
<p>When I use this code it creates a whole new window instead of having it in the same window. Is there a way to unset the "CREATE_NEW_CONSOLE" flag because even when I set it to 0 it still creates a new console.</p>
http://stackoverflow.com/questions/1514257/using-getchar-after-read2Using getchar() after read()Alex Xander2009-10-03T16:52:55Z2009-10-03T19:16:51Z
<p>Hi I am using raw.c for keyboard capture. Following code finds when an arrow key/ esc is pressed. At the same time I want to read whole words that user inputs and these should be shown on <strong>stdout</strong> as well.</p>
<pre><code>char pp = 0;
char p = 0;
while( (i = read(0, &c, 1)) == 1) {
if (pp == 033 && p == 0133 && (c &= 255) == 0102) /* DOWN */ break;
if (c == 0177) /* ASCII DELETE */ break;
printf( "%o, %o, %o\t%s\n\r", pp, p, c, &c);
pp = p;
p = c;
}
...
...
getchar(); //I want to capture here what was entered before
// **return key** was pressed.
</code></pre>
<p>But this code does not work if I remove '\n'.
I want stdout should behave as a normal shell.</p>
http://stackoverflow.com/questions/1477196/binary-stdin-and-stdout1Binary stdin and stdoutRich2009-09-25T13:09:03Z2009-09-25T13:49:13Z
<p>I'm looking to write a pair of utilities that read in a newline separated list of integers on stdin and output their binary (4 byte) equivalent to stdout, and vice versa.</p>
<p>My first thought was a simple bash/linux command that would do this, but I was unable to find one. My second thought was to do this in C++, but I can't figure out how to change stdin or stdout to a binary stream.</p>
<p>Any thoughts on a good way to do this? I'm impartial to any particular programming language.</p>
http://stackoverflow.com/questions/1450393/how-do-you-read-from-stdin-in-python6How do you read from stdin in pythontehryan2009-09-20T05:48:07Z2009-09-21T13:01:14Z
<p>I'm trying to do some of the code golf challenges but they all require the input to be taken from stdin and I don't know how to get that in python.</p>
http://stackoverflow.com/questions/1365653/calling-fgets-on-popen-of-ssh-is-flushing-the-beginning-of-stdin-of-the-cal0Calling fgets() on popen() of 'ssh' is flushing the beginning of stdin of the calling process (ptty issue)WilliamKF2009-09-02T03:03:23Z2009-09-19T17:35:23Z
<p>Hello,</p>
<p>I have now whittled this down to a minimal test case. Thus far I have been able to determine that this is an issue related to pseudo-terminals which come about with the pipe of ssh. Adding the '-t -t' to the ssh call improved things, in that now, it takes a second call to fgets() to cause the issue. I suspect that the stderr output of the ssh command somehow works into the issue, for now I have redirected stderr to stdout in the ssh code to execute. I do wonder if the "tcgetattr: Invalid argument" error is part of the problem, but am not sure how to get rid of that. It seems to come from the -t -t being present. I believe the -t -t is moving in the right direction, but I have to set up the pseudo terminal for stderr somehow and perhaps the test will work properly?</p>
<p>The Makefile:</p>
<pre><code>test:
gcc -g -DBUILD_MACHINE='"$(shell hostname)"' -c -o test.o test.c
gcc -g -o test test.o
.PHONY: clean
clean:
rm -rf test.o test
</code></pre>
<p>The test.c source file:</p>
<pre><code>#include <unistd.h>
#include <string.h>
#include <stdio.h>
int
main(int argc, char *argv[])
{
const unsigned int bufSize = 32;
char buf1[bufSize];
char buf2[bufSize];
int ssh = argv[1][0] == 'y';
const char *cmd = ssh ? "ssh -t -t " BUILD_MACHINE " \"ls\" 2>&1" : "ls";
FILE *fPtr = popen(cmd, "r");
if (fPtr == NULL) {
fprintf(stderr,"Unable to spawn command.\n");
perror("popen(3)");
exit(1);
}
printf("Command: %s\n", cmd);
if (feof(fPtr) == 0 && fgets(buf2, bufSize, fPtr) != NULL) {
printf("First result: %s\n", buf2);
if (feof(fPtr) == 0 && fgets(buf2, bufSize, fPtr) != NULL) {
printf("Second result: %s\n", buf2);
int nRead = read(fileno(stdin), buf1, bufSize);
if (nRead == 0) {
printf("???? popen() of ssh consumed the beginning of stdin ????\n");
} else if (nRead > 0) {
if (strncmp("The quick brown fox jumped", buf1, 26) != 0) {
printf("??? Failed ???\n");
} else {
printf("!!!!!!! Without ssh popen() did not consume stdin !!!!!!!\n");
}
}
}
}
}
</code></pre>
<p>This shows it running the passing way:</p>
<pre><code>> echo "The quick brown fox jumped" | ./test n
Command: ls
First result: ARCH.linux_26_i86
Second result: Makefile
!!!!!!! Without ssh popen() did not consume stdin !!!!!!!
</code></pre>
<p>This shows it running the failing way:</p>
<pre><code>> echo "The quick brown fox jumped" | ./test y
Command: ssh -t -t hostname "ls" 2>&1
First result: tcgetattr: Invalid argument
Second result: %backup%~ gmon.out
???? popen() of ssh consumed the beginning of stdin ????
</code></pre>
http://stackoverflow.com/questions/1401002/trick-an-application-into-thinking-its-stdin-is-interactive-not-a-pipe5Trick an application into thinking it's stdin is interactive, not a pipeChris2009-09-09T17:31:55Z2009-09-11T11:03:51Z
<p>I'm trying to do the opposite of</p>
<p><a href="http://stackoverflow.com/questions/1312922/detect-if-stdin-is-a-terminal-or-pipe-in-c-c-qt">http://stackoverflow.com/questions/1312922/detect-if-stdin-is-a-terminal-or-pipe-in-c-c-qt</a></p>
<p>I'm running an application that's changing its output format because it detects a pipe on stdout, and I want it to think that it's an interactive terminal so that I get the same output when redirecting.</p>
<p>I was thinking that wrapping it in an expect script or using a proc_open() in php would do it, but it doesn't.</p>
<p>Any ideas out there?</p>
http://stackoverflow.com/questions/1312922/detect-if-stdin-is-a-terminal-or-pipe-in-c-c-qt4Detect if stdin is a terminal or pipe in C/C++/Qt?Mike Arthur2009-08-21T16:22:14Z2009-09-09T17:21:52Z
<p>When I execute "<code>python</code>" from the terminal with no arguments it brings up the Python interactive shell.</p>
<p>When I execute "<code>cat | python</code>" from the terminal it doesn't launch the interactive mode. Somehow, without getting any input, it has detected that it is connected to a pipe.</p>
<p>How would I do a similar detection in C or C++ or Qt?</p>
http://stackoverflow.com/questions/1358444/temporary-input-redirection-in-bash3Temporary Input Redirection in BashWill Bickford2009-08-31T17:25:41Z2009-09-01T13:19:57Z
<p>I am looking for a way to dump input into my terminal from a file, but when EOF is reached I would like input returned back to my keyboard. Is there a way to do this with Bash (or any other commonly-available *nix shell)?</p>
<p>Details:
I am debugging a server program which executes a fork to start a child process. Every time I start a debugging session with gdb I have to type set follow-fork-mode child. I would like to use some sort of input redirection to have this pre-populated. There are other uses as well that I can think of, so I'd prefer a general solution - hence the reason this question is <em>not</em> about gdb.</p>
<p>Solution:
<strong>start-server.sh</strong></p>
<pre><code>#!/bin/bash
cat run-server.txt - |/bin/bash
</code></pre>
<p><strong>run-server.txt</strong></p>
<pre><code>gdb ./Server
set follow-fork-mode child
run
</code></pre>
http://stackoverflow.com/questions/1340366/how-to-make-ssh-receive-the-password-from-stdin1How to make ssh receive the password from stdinnoam2009-08-27T11:07:47Z2009-08-27T11:14:52Z
<p>How can you make SSH read the password from stdin, which it doesn't do by default?</p>
http://stackoverflow.com/questions/1315156/win32-readfileex-on-stdinhandle-blocks-why1Win32: ReadFileEx() on STD_IN_HANDLE blocks, why?Jeremy Friesner2009-08-22T04:43:10Z2009-08-22T04:58:00Z
<p>Hi all,</p>
<p>I'm trying to use the Win32 API to make a sub-thread that reads from STD_INPUT_HANDLE and pushes the bytes it reads into a socket. Because I want to be able to shut down this thread safely when it's time to exit, I'm using ReadFileEx() and overlapped I/O instead of plain old blocking ReadFile(). The idea is that my thread will wait in WaitForSingleObject() instead of in ReadFile(), and when the main thread wants the slave thread to go away, it will signal on that object, the slave thread will wake up and exit, and then the main thread can continue its shutdown sequence.</p>
<p>My problem is this: despite the documentation saying that ReadFileEx() is asynchronous and thus won't ever block... my slave thread is still blocking inside ReadFileEx(). (I inserted printf's in the event loop to verify where it was blocking) Because of this, my main thread can't shut the slave thread down, and thus main program never exits.</p>
<p>Am I doing something wrong, or is ReadFileEx() meant to block when reading from stdin? If the latter, what is the solution to the thread shutdown problem? The slave thread's entry function is below for your persual...</p>
<pre><code>[... in the main thread, before the slave thread is spawned...]
_stdinHandle = GetStdHandle(STD_INPUT_HANDLE);
_wakeupSignal = CreateEvent(0, false, false, 0);
[...]
VOID WINAPI CompletedReadRoutine(DWORD dwErr, DWORD cbBytesRead, LPOVERLAPPED lpOverLap)
{
printf("CompletedReadRoutine dwErr=%li cbBytesRead=%li overlap=%p\n", dwErr, cbBytesRead, lpOverLap);
}
void StdinDataIO :: IOThreadEntry()
{
char buf[4096];
OVERLAPPED olap;
bool keepGoing = true;
bool overlappedReadPending = false;
while(keepGoing)
{
if (overlappedReadPending)
{
DWORD waitResult = WaitForSingleObjectEx(_wakeupSignal, INFINITE, true);
switch(waitResult)
{
case WAIT_IO_COMPLETION:
{
overlappedReadPending = false;
DWORD numBytesRead;
if ((GetOverlappedResult(_stdinHandle, &olap, &numBytesRead, true) == false)||(SendData(_slaveSocket, buf, numBytesRead, true) != numBytesRead)) keepGoing = false;
}
break;
default:
keepGoing = false;
break;
}
}
else
{
memset(&olap, 0, sizeof(olap));
if (ReadFileEx(_stdinHandle, buf, sizeof(buf), &olap, CompletedReadRoutine)) overlappedReadPending = true;
else keepGoing = false;
}
}
if (overlappedReadPending) CancelIo(_stdinHandle);
_slaveSocket.Reset(); // this alerts the main thread that we are gone
}
</code></pre>
http://stackoverflow.com/questions/1284184/can-i-put-binary-in-stdin-c1Can i put binary in stdin? C#acidzombie242009-08-16T12:20:19Z2009-08-16T16:52:28Z
<p>Related to this question <a href="http://stackoverflow.com/questions/1284088/encrypt-binary-with-7z-without-filenames/1284101#1284101">http://stackoverflow.com/questions/1284088/encrypt-binary-with-7z-without-filenames/1284101#1284101</a></p>
<p>In C# how can i put binary in STDin? i was hoping the below would work but it doesnt. And it makes sense. So how do i push a byte[] array?</p>
<pre><code>new BinaryWriter(p.StandardInput.FormatProvider);
</code></pre>
http://stackoverflow.com/questions/922233/c-bi-directional-ipc-over-stdin-and-stdout1C# bi-directional IPC over stdin and stdoutKyle K2009-05-28T17:40:56Z2009-08-15T21:00:01Z
<p>How can I connect two C# processes so they can communicate with each other over stdin and stdout?</p>
<p>Like this:</p>
<p>Process A --> stdout A --> stdin B ---> Process B</p>
<p>Process A <-- stdin A <-- stdout B <--- Process B</p>