Tagged Questions

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 …
3
votes
3answers
138 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
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.
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; …
0
votes
1answer
83 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 …
1
vote
5answers
88 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 …
1
vote
2answers
83 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 …
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
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 …
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 …
4
votes
3answers
687 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' or die "Can't read …
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
0
votes
3answers
127 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 problems if I execute …

1 2 3 4 5 6 next
15 30 50 per page