Re: [vox-tech] file and keyboard input stream in C
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [vox-tech] file and keyboard input stream in C
If you really want to, you could do:
./catnstdin myfile.txt | ./a.out
where "catnstdin" is a program that cats "myfile.txt", then echoes stdin.
Should be a couple lines of a script program.
Or you could just teach a.out to read files. But above is cuter and
quicker to implement, I think.
-Mark ^_^;
On Mon, 3 Mar 2003, Peter Jay Salzman wrote:
> i have code that reads from stdin via getchar(). i'd like to use the
> program by redirecting a text file to its stdin:
>
> ./a.out < myfile.txt
>
> after it does its stuff, i'd like use stdin from a keyboard (after it
> processes the data from myfile.txt it displays the data using ncurses
> and requires input from me using the ncurses input functions).
>
> unfortunately, i can't use the ncurses input functions. presumably
> because stdin is attached to a file instead of the keyboard.
>
> how can i reattach stdin back to the keyboard?
>
> pete
>
> --
> First they ignore you, then they laugh at you, then they fight you,
> then you win. -- Gandhi, being prophetic about Linux.
>
> Fingerprint: B9F1 6CF3 47C4 7CD8 D33E 70A9 A3B9 1945 67EA 951D
> _______________________________________________
> vox-tech mailing list
> vox-tech@lists.lugod.org
> http://lists.lugod.org/mailman/listinfo/vox-tech
>
--
Mark K. Kim
http://www.cbreak.org/
PGP key available upon request.
|