in reply to Re: How do you store a line of info from a file that you later need to sort?
in thread How do you store a line of info from a file that you later need to sort?
#!/usr/bin/perl print "Please enter trace file name" $tracefilename = <STDIN>; chomp $tracefilename; print "Please enter agent extension" $agentextension = <STDIN>; chomp $agentextension; print "Please enter time" $time = <STDIN>; chomp $time; open (THATFILE, "$tracefilename") || die "cannot open $tracefilename: $!"; foreach $line (@lines) { # now I'm stuck!!!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: How do you store a line of info from a file that you later need to sort?
by tye (Sage) on Mar 13, 2001 at 00:07 UTC | |
|
Re: Re: Re: How do you store a line of info from a file that you later need to sort?
by dneedles (Sexton) on Mar 13, 2001 at 01:41 UTC |