merge stdin, stdout?
jonny lowe
jonny.lowe.12345 at gmail.com
Thu Feb 4 20:56:50 EST 2010
Hi everyone,
Is there an easy way to merge stdin and stdout? For instance suppose I
have script that prompts for a number and prints the number. If you
execute this with redirection from a file say input.txt with 42 in the
file, then executing
./myscript < input.txt > output.txt
the output.txt might look like this:
Enter a number:
You entered 42.
What I want is to have an easy way to merge input.txt and the stdout
so that output.txt look like:
Enter a number: 42
You entered 42.
Here, the first 42 is of course from input.txt.
Thanks.
-jon
More information about the Python-list
mailing list