I have a file, with n numbers on each lines. The first column on the line is a date: say 12/31/2009. However, some dates can be missing. I want to create files corresponding to date, containing the numbers that follow. For example:
master file will contain this data:
  12/28/2009   5 6 7  
  12/31/2009   6 7  7
The resulting files should be named and have the following data, note format:
file1.20081228
  item     data 
 -------   ------    
  1          5
  2          6   
  3          7 
file1.20081231
  item     data 
 -------   ------  
   1         6 
   2         7   
   3         7
Thanks