[Perl-unix-users] Issue with Opening a File from database and displaying in a browser!

2004-07-20 Thread Rajendra Kadam (rakadam)
Title: Message Hi Gurus,   Let me define the problem here :   In our website, user can see the link for list of excel files that they view. [ These excel files are stored in database as a blob.] Whenever user clicks on any one the link, by using the unique id, we extract the blob from the d

RE: [Perl-unix-users] How to append specified files into a big file

2004-07-20 Thread Nguyen, David M
Title: Message Thanks, Jay.  This makes sense but I need to write a script to prompt for user input, a start date and a begin date.  For example, if user input start date is “0710” and end date is “0716” then I want the program to append all the files between that date range.  Is there a w

RE: [Perl-unix-users] How to append specified files into a big fi le

2004-07-20 Thread Jason Vincent
Title: Message     @files = ( 'Meas.atl00.1040.0710, 'Meas.atl00.1040.0711', 'Meas.atl00.1040.0712', 'Meas.atl00.1040.0713', 'Meas.atl00.1040.0714', 'Meas.atl00.1040.0715', 'Meas.atl00.1040.0716');   open (OUT, '>>bigfile.txt')||die $!;   foreach (@files){     open (IN, "$_")|| die $!;     wh

RE: [Perl-unix-users] How to append specified files into a big file

2004-07-20 Thread Matt Schneider
In the shell I would run the following command:   cat Meas.atl00.1040.0710 Meas.atl00.1040.0711 Meas.atl00.1040.0712 Meas.atl00.1040.0713 Meas.atl00.1040.0714 Meas.atl00.1040.0715 Meas.atl00.1040.0716 > bigfile.txt   Thanks,Matthew SchneiderSystem Administrator / ProgrammerSKLD Informat

[Perl-unix-users] How to append specified files into a big file

2004-07-20 Thread Nguyen, David M
I have all the files below under /mydir directory, I want to append ONLY the files highlighted into a big file names “bigfile.txt”.  How do I accomplish this?   Meas.atl00.1040.0705 Meas.atl00.1040.0706 Meas.atl00.1040.0707 Meas.atl00.1040.0708 Meas.atl00.1040.0709 Meas.atl00.1040.07