mcallaghan
IS-IT--Management
I have a list of files like so
>>C:\dev\test\test1\090205\A1CQ00004341_BTOtiers.sql@@\main\R3_Support_INT\3
>>C:\dev\test\test1\090205\A1CQ00004341_TOPtiers.sql@@\main\R3_Support_INT\3
>>C:\dev\test\test1\090205\A1CQ00004341_TOPtier2.sql@@\main\R3_Support_INT\3
What i want to to is just have a nested awk which will grab the names of the files from the lines above and send them to another document or a log file
Var1=A1CQ00004341_BTOtiers.sql
Var2=A1CQ00004341_TOPtiers.sql
var3=A1CQ00004341_TOPtier2.sql
My question is how to create a nested awk to do this.
>>C:\dev\test\test1\090205\A1CQ00004341_BTOtiers.sql@@\main\R3_Support_INT\3
>>C:\dev\test\test1\090205\A1CQ00004341_TOPtiers.sql@@\main\R3_Support_INT\3
>>C:\dev\test\test1\090205\A1CQ00004341_TOPtier2.sql@@\main\R3_Support_INT\3
What i want to to is just have a nested awk which will grab the names of the files from the lines above and send them to another document or a log file
Var1=A1CQ00004341_BTOtiers.sql
Var2=A1CQ00004341_TOPtiers.sql
var3=A1CQ00004341_TOPtier2.sql
My question is how to create a nested awk to do this.