I have x number of files which are named using constistent naming convention mmdd.file (where mm is a month number and dd is a day number, "file" is a constant.
What is the best way to approach the following:
I will explain it by using this example:
0723.file contains the following tab delimited columns:
row1_col1_in_0723.file row1_col2_in_0723.file
row2_col1_in_0723.file row2_col2_in_0723.file
:
0724.file contains the following tab delimited columns:
row1_col1_in_0724.file row1_col2_in_0724.file
row2_col1_in_0724.file row2_col2_in_0724.file
:
In my output file, I want to have the following:
row1_col2_in_0723.file row1_col2_in_0724.file
row2_col2_in_0723.file row2_col2_in_0724.file
:
Thank you very much
What is the best way to approach the following:
I will explain it by using this example:
0723.file contains the following tab delimited columns:
row1_col1_in_0723.file row1_col2_in_0723.file
row2_col1_in_0723.file row2_col2_in_0723.file
:
0724.file contains the following tab delimited columns:
row1_col1_in_0724.file row1_col2_in_0724.file
row2_col1_in_0724.file row2_col2_in_0724.file
:
In my output file, I want to have the following:
row1_col2_in_0723.file row1_col2_in_0724.file
row2_col2_in_0723.file row2_col2_in_0724.file
:
Thank you very much