9
votes
1answer
330 views
Opening a TStream on stdin/stdout in a Delphi console app
I'm trying to write a Delphi console application that creates a TStream for its standard input, and another TStream for its standard output.
(It will be launched by a host app with its input and …
7
votes
5answers
4k views
Python - How do I pass a string into subprocess.Popen (using the stdin argument)?
If I do the following:
import subprocess
from cStringIO import StringIO
subprocess.Popen(['grep','f'],stdout=subprocess.PIPE,stdin=StringIO('one\ntwo\nthree\nfour\nfive\nsix\n')).communicate()[0]
I …
6
votes
3answers
1k views
How do you read from stdin in python
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.
6
votes
3answers
5k views
Best practices with STDIN in Ruby?
I want to deal with the command line input in Ruby:
> cat input.txt | myprog.rb
> myprog.rb < input.txt
> myprog.rb arg1 arg2 arg3 ...
What is the best way to do it? In particular I …
5
votes
4answers
230 views
Trick an application into thinking it’s stdin is interactive, not a pipe
I'm trying to do the opposite of
http://stackoverflow.com/questions/1312922/detect-if-stdin-is-a-terminal-or-pipe-in-c-c-qt
I'm running an application that's changing its output format because it …
5
votes
3answers
645 views
Python equivalent of Perl’s while (<>) {…}?
I write a lot of little scripts that process files on a line-by-line basis. In Perl, I use
while (<>) {
do stuff;
}
This is handy because it doesn't care where the input comes from (a …
5
votes
3answers
424 views
PHP standard input?
I know PHP is usually used for web development, where there is no standard input, but PHP claims to be usable as a general-purpose scripting language, if you do follow it's funky web-based …
5
votes
3answers
2k views
Cross-platform (linux/Win32) nonblocking C++ IO on stdin/stdout/stderr
I'm trying to find the best solution for nonblocking IO via stdin/stdout with the following characteristics:
As long as there is enough data, read in n-sized chunks.
If there's not enough data, read …
5
votes
3answers
1k views
Eclipse reading stdin (System.in) from a file.
Is it possible for Eclipse to read stdin from a file?
4
votes
3answers
654 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 …
4
votes
4answers
374 views
Detect if stdin is a terminal or pipe in C/C++/Qt?
When I execute "python" from the terminal with no arguments it brings up the Python interactive shell.
When I execute "cat | python" from the terminal it doesn't launch the interactive mode. Somehow, …
4
votes
2answers
488 views
in windows, how to have non-blocking stdin that is a redirected pipe?
I have a Windows C program that gets its data through a redirected stdin pipe, sort of like this:
./some-data-generator | ./myprogram
The problem is that I need to be able to read from stdin in a …
4
votes
5answers
267 views
How do I iterate over all lines of files passed on the commandline in Python?
I usually do this in Perl:
whatever.pl
while(<>) {
#do whatever;
}
then cat foo.txt | whatever.pl
Now, I want to do this in Python. I tried sys.stdin but I have no idea how to do as I …
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 …
3
votes
3answers
143 views
Temporary Input Redirection in Bash
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 …
