Reading ARGV _AND_ trying to have redirectable STDOUT ????

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Michael W. Cocke

    Reading ARGV _AND_ trying to have redirectable STDOUT ????

    This is probably incredibly obvious, but I'm just not getting it. I
    need to accept an arg (I don't care if it's from getopt or @ARGV).
    and I need to be able to print to STDOUT. So far, so good. If I try
    to redirect STDOUT to a file (>test.out), the program doesn't output
    anything at all (I cannot even tell if it's executing) . If I don't
    take the arg from the command line, the STDOUT redirect works fine.

    How do I manage both?

    Thanks!

    Mike-

    Mornings: Evolution in action. Only the grumpy will survive.
    -----------------------------------------------------

    Please note - Due to the intense volume of spam, we have
    installed site-wide spam filters at catherders.com. If
    email from you bounces, try non-HTML, non-encoded,
    non-attachments.


    ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
    http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
    ---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---
  • Jim Gibson

    #2
    Re: Reading ARGV _AND_ trying to have redirectable STDOUT ????

    In article <ps2bovsfk4df5q 2bg5c4gb2tjvv7l ucmc1@4ax.com>, Michael W.
    Cocke <cocke@catherde rs.com> wrote:
    [color=blue]
    > This is probably incredibly obvious, but I'm just not getting it. I
    > need to accept an arg (I don't care if it's from getopt or @ARGV).
    > and I need to be able to print to STDOUT. So far, so good. If I try
    > to redirect STDOUT to a file (>test.out), the program doesn't output
    > anything at all (I cannot even tell if it's executing) . If I don't
    > take the arg from the command line, the STDOUT redirect works fine.
    >
    > How do I manage both?
    >
    > Thanks!
    >
    > Mike-
    >
    > Mornings: Evolution in action. Only the grumpy will survive.
    > -----------------------------------------------------
    >
    > Please note - Due to the intense volume of spam, we have
    > installed site-wide spam filters at catherders.com. If
    > email from you bounces, try non-HTML, non-encoded,
    > non-attachments.
    >
    >
    > ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
    > http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000
    > Newsgroups
    > ---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---[/color]

    It would be best if you could post your program, reducing it down to
    the minimum size that demonstrates the problem. However, please do so
    to the newsgroup comp.lang.perl. misc, as this group is defunct.

    I have definitely written perl programs that accept command line
    arguments and redirected STDOUT to a file, so i know it is possible.
    Have you considered explicitly opening a file and writing to it, rather
    than redirecting STDOUT?

    Comment

    Working...