1
vote
3answers
37 views
Compress files while reading data from STDIN
Is it possible to compress (create a compressed archive) data while reading from stdin on Linux.
3
votes
3answers
108 views
Read from File, or STDIN
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 …
2
votes
3answers
267 views
Why this program fails (sometimes)?
#include <cstdio>
#include <QtCore/QProcess>
int main (int argc, char** argv) {
// if we remove 3 following lines, the problem described below doesn't exists!!
QPr …
0
votes
1answer
49 views
python stdin eof
Hi all,
How to pass python eof to stdin
here is my code
p = Popen(commd,stdout=PIPE,stderr=PIPE,stdin=PIPE)
o = p.communicate(inputstring)[0]
when i run the commd in command …
1
vote
5answers
80 views
I’m trying to split a string by a delimiter but it doesn’t work, why?
Hi All,
I wrote below code to readin line by line from stdin ex.
city=Boston;city=New York;city=Chicago\n
and then split each line by ';' delimiter and print each record.
But …
1
vote
2answers
49 views
How to send backspace using sendmessage(C#) to cmd.exe
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 t …
1
vote
1answer
19 views
ncurses and stdin blocking problem
I have stdin in a select() set and I want to take a string from stdin whenever the user types it and hits ENTER.
But select is triggering stdin as ready to read before ENTER is hi …
2
votes
6answers
445 views
C read binary stdin
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 m …
0
votes
4answers
154 views
How to check if stdin is still opened without blocking?
I need my program written in pure C to stop execution when stdin is closed.
There is indefinite work done in program main cycle, and there is no way I can use blocking checks (lik …
0
votes
6answers
61 views
How to use cp from stdin?
Note:
# cat /tmp/foo - regular file
/lib/a.lib
/lib/b.lib
/lib/c.lib
/lib/d.lib
cat /tmp/foo | xargs cp /tmp/fred
cp: target /lib/d.lib is not a directory
0
votes
3answers
110 views
Java+Eclipse: how do you debug a java program that is receiving piped/redirected stdin?
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)
I am having problem …
4
votes
3answers
627 views
How can I reinitialize Perl’s STDIN/STDOUT/STDERR?
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:
open STDIN, '/dev/null' …
1
vote
3answers
75 views
What is the simplest way to execute arbitrary process with stdin, stdout forwarded to a socket?
I'm interested in two situations:
How to do it from C++?
How to do it from system's shell?
Answers for Linux, Windows and OSX are welcome.
0
votes
1answer
77 views
Java: dealing properly with pipes as stdin
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 ca …
0
votes
1answer
66 views
How do I go about Flushing STDIN here?
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:
unsigned
int input(voi …
