0
votes
1answer
36 views
.NET: Inject Data into Input-Buffer of Process
Hi *
I need to automate an command line application. It asks the user to enter a password. All my approches to send the password via STDIN failed. Now I am trying to do this with an wrapper-programm …
1
vote
2answers
97 views
How to write a GUI wrapper around a command line program in *C*?
System(); is able to call a program in PATH. How is it possible to send stdin read from e.g. a text field on a GUI to a command line program such as ftp, sftp ... with their own prompts?
System() …
0
votes
2answers
38 views
arrow key via stdin
Hi everybody,
I'm trying to send an arrow key via the stdin to the bash:
cat | /bin/bash
then i am typing "echo hi" => "hi" appears on the console (of course without the quotes)
then i press the …
1
vote
3answers
50 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
139 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 other utilities …
1
vote
2answers
86 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 take effect. The …
1
vote
5answers
89 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 for some reason the …
0
votes
1answer
84 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 line after i input …
2
votes
3answers
274 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!!
QProcess process;
…
1
vote
1answer
28 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 hit, and, in rare …
0
votes
6answers
67 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
2
votes
6answers
576 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 memory somehow while …
0
votes
1answer
71 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(void)
{
unsigned …
0
votes
1answer
82 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 causing this error?
…
0
votes
4answers
198 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 (like getc()) there (no …
