Re: [Perl-unix-users] How to step over the , while input redirection is not given at commandline

2002-02-14 Thread $Bill Luebkert
SubbaReddy M wrote: > Hello Gurus, > Source code: of printFile.pl > # File: printFile.pl ## > #! /usr/bin/perl -w > my (@data, $user); > > # Input rediretion file > > $user = (defined @ARGV) ? shift @ARGV : "Anonymous"; > > # I don't wish to prompt by program, but it

[Perl-unix-users] How to step over the , while input redirection is not given at commandline

2002-02-14 Thread SubbaReddy M
Hello Gurus, Source code: of printFile.pl # File: printFile.pl ## #! /usr/bin/perl -w my (@data, $user); # Input rediretion file $user = (defined @ARGV) ? shift @ARGV : "Anonymous"; # I don't wish to prompt by program, but it's still waiting how to Step Over here @dat