Tagged Questions

Standard input (stdin, file descriptor 0) is the input stream to a program.

learn more… | top users | synonyms

110
votes
7answers
76k 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.
70
votes
5answers
35k 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 ...
33
votes
5answers
31k 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 ...
17
votes
5answers
2k 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, ...
17
votes
1answer
2k 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 ...
15
votes
2answers
355 views

How to read non-ASCII characters from CLI standard input

If I type å in CMD, fgets stop waiting for more input and the loop runs until I press ctrl-c. If I type a "normal" characters like a-z0-9!?() it works as expected. I run the code in CMD under Windows ...
13
votes
2answers
3k views

nodejs how to read keystrokes from stdin

Is it possible to listen for incoming keystrokes in a running nodejs script? If I use process.openStdin() and listen to its 'data' event then the input is buffered until the next newline, like so: // ...
13
votes
5answers
930 views

How can I read piped input in Perl on Windows?

I am trying to create something in Perl that is basically like the Unix tee command. I'm trying to read each line of STDIN, run a substitution on it, and print it. (And eventually, also print it to a ...
13
votes
4answers
8k views

Java: How could I “intercept” Ctrl+C in a CLI application?

How could I "intercept" Ctrl+C (which normally would kill the process) in a CLI (command line interface) Java application? Does a multi-platform solution exist (Linux, Solaris, Windows)? I'm using ...
12
votes
4answers
3k views

Trick an application into thinking its 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 ...
11
votes
2answers
10k views

How to read mutliline input from stdin into variable and how to print one out in shell(sh,bash)?

What I want to do is the following: read in multiple line input from stdin into variable A make various operations on A pipe A without loosing delimiter symbols (\n,\r,\t,etc) to another command ...
10
votes
1answer
191 views

What's the fastest way to read from System.in in Java?

I am reading bunch of integers separated by space or newlines from the standard in using Scanner(System.in). Is there any faster way of doing this in Java?
10
votes
3answers
6k 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 ...
10
votes
3answers
2k 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 ...
9
votes
2answers
231 views

Flushing Perl STDIN buffer

Is there any way to clear the STDIN buffer in Perl? A part of my program has lengthy output (enough time for someone to enter a few characters) and after that output I ask for input, but if characters ...
9
votes
5answers
814 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 ...
9
votes
4answers
5k 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 ...
9
votes
5answers
8k views

Eclipse reading stdin (System.in) from a file

Is it possible for Eclipse to read stdin from a file?
8
votes
2answers
227 views

d programming language : standard input problem or misunderstanding?

Here is a simple program that reads lines from stdin and outputs them to stdout. module test; import std.stdio; void main(string[] args) { foreach (int i, string line; lines(stdin)) { ...
8
votes
2answers
527 views

What is the difference between STDIN and $stdin in Ruby?

Ruby has two ways of referring to the standard input: The STDIN constant , and the $stdin global variable. Aside from the fact that I can assign a different IO object to $stdin because it's not a ...
8
votes
4answers
577 views

confused about stdin, stdout and stderr?

I am rather confused with the purpose of these three files. If my understanding is correct, stdin is the file in which a program writes into its requests to run a task in the process. stdout is the ...
7
votes
2answers
84 views

Is it possible to set timeout for std::cin?

Is it possible to set timeout for std::cin? For example, std::cin doesn't receive any data during 10 seconds - it throws an exception or returns an error. Edited: And what about timer from Boost ...
7
votes
4answers
1k views

Why do I have to press Ctrl+D twice to close stdin?

I have the following python script that reads numbers and outputs an error if the input is not a number. import fileinput import sys for line in (txt.strip() for txt in fileinput.input()): if not ...
7
votes
4answers
5k views

Continuously read from STDOUT of external process in Ruby

I want to run blender from the command line through a ruby script, which will then process the output given by blender line by line to update a progress bar in a GUI. It's not really important that ...
7
votes
8answers
3k views

Read a line of input faster than fgets?

I'm writing a program where performance is quite important, but not critical. Currently I am reading in text from a FILE* line by line and I use fgets to obtain each line. After using some performance ...
6
votes
4answers
132 views

Is there any way to pass 'stdin' as an argument to another process in python?

I'm trying to create a script which is using multiprocessing module with python. The script (lets call it myscript.py) will get the input from another script with pipe. Assume that I call the ...
6
votes
2answers
189 views

Pipe input to Python program and later get input from user

Let's say I want to pipe input to a Python program, and then later get input from the user, on the command line. echo http://example.com/image.jpg | python solve_captcha.py and the contents of ...
6
votes
2answers
222 views

Read program STDIN in Delphi

I have the following batch script: dir | myapp.exe And the program has this source (more or less): procedure TForm1.FormCreate(Sender: TObject); var buff: String; begin Read(buff); ...
6
votes
4answers
360 views

Why does STDIN cause my Perl program to freeze?

I am learning Perl and wrote this script to practice using STDIN. When I run the script, it only shows the first print statement on the console. No matter what I type in, including new lines, the ...
6
votes
1answer
796 views

Setting smaller buffer size for sys.stdin?

I'm running memcached with the following bash command pattern: memcached -vv 2>&1 | tee memkeywatch2010098.log 2>&1 | ~/bin/memtracer.py | tee memkeywatchCounts20100908.log to try and ...
6
votes
3answers
3k views

How to pass variables as stdin into command line from PHP

I am trying to write a PHP script that uses the pdftk app to merge an XFDF with a PDF form and output the merged PDF to the user. According to the pdftk documentation, I can pass the form data in via ...
6
votes
4answers
647 views

How do you specify filenames within a zip when creating it on the command line from a pipe?

I'm trying to create a zip file from file contents which are being piped in, e.g. mysql [params and query] | zip -q output.zip - This writes the zip correctly, but when you open the zip, the file ...
6
votes
3answers
903 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 ...
5
votes
1answer
67 views

perl Padre IDE standard input not working

I'm using padre 0.64 as perl IDE on windows vista The standard input command is not working , I tried the same code on the cmd line and it did work i.e my $k = <>; print $k; Is there a ...
5
votes
2answers
291 views

Test if stdin has input for C++ (windows and/or linux)

I basically want to test if stdin has input (like if you echo and pipe it). I have found solutions that work, but they are ugly, and I like my solutions to be clean. On linux I use this: bool ...
5
votes
2answers
107 views

Python finding stdin filepath on Linux

How can I tell the file (or tty) that is attached to my stdios? Something like: >>> import sys >>> print sys.stdin.__path__ '/dev/tty1' >>> I could look in proc: ...
5
votes
1answer
192 views

Which is the better way to pass data into Python Unittest Redirected STDIN or Pickle?

Short Question What is the best way to get data into a Python unittest case ? Background My project is using Python's unittest module as an automated way execute a series of tests that will need to ...
5
votes
5answers
665 views

How to pass the value of a variable to the stdin of a command?

I'm writing a shell script that should be somewhat secure i.e. does not pass secure data through parameters of commands and preferably does not use temporary files. How can I pass a variable to the ...
5
votes
5answers
3k views

Read from file or stdin - C

I am writing a utility which accepts either a filename, or reads from stdin I would like to know the most robust / fastest way of checking to see if stdin exists (data is being piped to the program) ...
5
votes
1answer
674 views

How to detect if Console.In (stdin) has been redirected?

I want to write a console application that have a different behavior depending if the input is coming from keyboard or from, say, a file. Is it possible? What's the most elegant way to do it in C#?
5
votes
4answers
296 views

In Perl, How Do I Determine If There's a Standard Input Present?

I've got a script that grabs standard input: (code snippet) &process_input sub process_input { while(<STDIN>) { $log_data .= $_; } } When I run the script: myscript.pl ...
5
votes
2answers
278 views

D (Tango) Read all standard input and assign it to a string

In the D language how I can read all standard input and assign it to a string (with Tango library) ?
5
votes
6answers
728 views

Why is windows select() not always notifying thread B's select() when thread A closes its end of a socket pair?

A situation I have under Windows XP (SP3) has been driving me nuts, and I'm reaching the end of my tether, so maybe someone can provide some inspiration. I have a C++ networking program (non-GUI). ...
5
votes
6answers
2k views

Does reading from stdin flush stdout?

stdout is line-buffered when connected to a terminal, but I remember reading somewhere that reading (at least from stdin) will automatically flush stdout. All C implementations that I have used have ...
5
votes
3answers
1k views

How to read lines from stdin (*in*) in clojure

I am writing my first clojure program, and want to read lines from stdin. When I try this: (doall (map #(println %) (line-seq *in*))) I get this exception: Exception in thread "main" ...
5
votes
1answer
372 views

Why does this code behave differently in Python3.1 than in Python2.6?

I'm very new to programming so I apologize in advance if my question is too silly. #!/usr/bin/python2.6 import subprocess, time p=subprocess.Popen(['cat'], stdin=subprocess.PIPE, ...
5
votes
3answers
3k views

Compress files while reading data from STDIN

Is it possible to compress (create a compressed archive) data while reading from stdin on Linux.
5
votes
2answers
2k 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 ...
5
votes
3answers
1k views

How can I tell if STDIN is connected to a terminal in Perl?

How can I tell if STDIN is connected to a terminal in Perl?
5
votes
3answers
5k 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 ...

1 2 3 4 5 10