in reply to Re: quick "open->close" file
in thread quick "open->close" file

nope, the filename is not passed in @ARGV.. what comes in @ARGV is for what to search in files..

Replies are listed 'Best First'.
Re: Re: Re: quick "open->close" file
by davorg (Chancellor) on Aug 06, 2003 at 15:22 UTC
    the filename is not passed in @ARGV

    Of course there's nothing to stop you putting it there :)

    my @args = @ARGV; @ARGV = 'filename.txt'; my @found = grep { /^args[0]/ } <>;
    --
    <http://www.dave.org.uk>

    "The first rule of Perl club is you do not talk about Perl club."
    -- Chip Salzenberg