Tagged Questions

0
votes
1answer
28 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
1answer
22 views

exec() text redirection for PHP on Windows

I have been following the post below trying to hook my SubVersion installation to my Mantis bug tracker. How To Integrate Subversion and Mantis Everything works fine until the last line where it …
0
votes
2answers
310 views

Not able to use 7-Zip to compress stdin and output with stdout?

I get the error "Not implemented". I want to compress a file using 7-Zip via stdin then take the data via stdout and do more conversions with my application. In the man page it shows this example: % …
1
vote
3answers
45 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
127 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
60 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
86 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
58 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 …
4
votes
3answers
653 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 …
2
votes
3answers
271 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
22 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 …
2
votes
6answers
510 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
6answers
62 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
1answer
69 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
79 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? …

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