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
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
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
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
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