I want to do this:
prog1 | prog2
e.g. I will use stdout from one program to send data to stdin in another program.
1) How does prog2 know that all data is sent if I send binary data?
2) How do on...
http://www.experts-exchange.com/Programming/Languages/C/Q_10155567.html
Zones:
CDate Answered: 06/05/1999 Grade: C Views: 0
I prompt the user for input:
print "Please enter a center code"
($center=<STDIN>);
and then print it out:
print "$center$another_variable"
The output includes the return charac...
http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_10264217.html
Zones:
PerlDate Answered: 01/28/2000 Grade: A Views: 0
Hi experts,
I am now working on a project on Windows 2000. The project is about running a Windows Telnet client. While the different is the program needs to take over the STDIN and STDOUT.
Th...
http://www.experts-exchange.com/Programming/Languages/C/Q_20370010.html
Zones:
CDate Answered: 10/15/2002 Grade: B Views: 0
i gave man -k compile commmand.It gave whatis file is missing
so i went as root user and gave
/.roothome # catman -w
stdin: not in compressed format
i am getting the above error.How to resolve it.
http://www.experts-exchange.com/Programming/System/Unix_-_Posix/Q_21338960.html
how do we have STDIN to allow user input?
thanks.
http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_21553406.html
Zones:
PerlDate Answered: 09/07/2005 Grade: A Views: 0
Ok, got a tough one for me.
print "enter hostname [xxx.com]: ";
$host = <STDIN> || "xxx.com";
i wanna make it such that if the user clicks <enter> without anything, $host should
be "xxx.com...
http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_21604101.html
Zones:
PerlDate Answered: 10/22/2005 Grade: A Views: 0
Hi experts,
can the input of stdin come from a mouse or other device other than the keyboard ?
can the stderr error go to things other than screen ? if so, what can they be ?
thanks.
http://www.experts-exchange.com/Programming/Languages/CPP/Q_21622425.html
Zones:
C++Date Answered: 11/08/2005 Grade: A Views: 0
I have a micro Linux board (SSV DIL-PC) http://www.dilnetpc.com/.
Since it has no keyboard nor screen, it is set up to use /dev/ttyS0 as keyboard and console. But I need all the serial ports for...
http://www.experts-exchange.com/Programming/System/Linux/Q_21916166.html
Zones:
Linux DevDate Answered: 07/21/2006 Grade: A Views: 0
I would like to read stdin until there is no more stdin, and then dump it to stdout.
Catch is: I must be able to do this with binary and ascii files, and I need to implement it with the stl.
(If t...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10079463.html
Zones:
C++Date Answered: 09/10/1998 Grade: A Views: 0
Very simple question I hope....
If I setup an email alias to pipe the contents of an email into a bourne shell script, what would be the syntax to get the script to read directly from STDIN?
http://www.experts-exchange.com/Programming/System/Unix_-_Posix/Q_10121614.html