Hi,
I'm trying to create a script that that is flexible enough to accept
input that is read from a file whose filename is passed as a command
line argument, or from STDIN via a pipe.
(This is on a WinXP platform rather than Unix)
By way of a simple example, I want both of the following to produce the
same results:
1: myScript.rb *.txt
2: cat *.txt | myScript.rb
I have had some joy with the first approach...
while line = ARGF.gets
#-- Do the interesting stuff here... or just
print the line.
print line
end
However, I cannot get anything to work for the pipe approach. I thought
that this would handle piped along STDIN
while gets()
line = $_
print line
end
but it chucks the following error:
U:\dev\WM&CAPS\capsfiles>cat testfile.caps | caps.rb
c:/scripts/caps.rb:1:in `gets': Bad file descriptor
(Errno::EBADF)
from c:/scripts/caps.rb:1
It does work for STDIO that comes in from the console, but not the pipe.
Oddly (for me), this code works when you pass the filename on the
command line.
Apologies for my newbie stupidity. I've had a good half hours google for
help on this but haven't had any luck.
Any help would be appreciated.
Thanks,
Stuart Holden
Senior Analyst Developer / IT Technical Services - Baring Asset
Management (London)
Tel Direct: +44 (0)20-7214 1932 Fax Direct: +44 (0)20-7214 1634
E-mail: Stuart.Holden@Baring-Asset.com Web:
http://www.baring-asset.com <http://www.baring-asset.com/>
<body>
<blockquote>
<font FACE="Arial,Arial" SIZE="1"><p ALIGN="JUSTIFY">This Email may contain confidential and privileged information and is intended for the use of the addressee(s) only. If you are not the intended recipient please notify the sender and delete the Email from your system. It should not be transmitted to any other person without the consent of the sender. Additional important notifications regarding Email transmissions from and to members of Baring Asset Management can be accessed at <a href="http://www.barings.com/email/index.hcst">http://www.barings.com/email/index.hcst</a></font></p></body>
</p>
</font>
</blockquote>
<p> </p>
</body>
</html>