Hello,
I take a list of zip file using command "7za.exe l file.zip", so I want use gawk to clean output
Ho can I clean this result:
2016-04-09 13:16:45 ....A 105907 123412 abc_def_c_hil.pdf
2016-04-09 13:16:45 ....A 105907 aa_bb_cc_dd.pdf
2016-04-09 13:16:45 ....A 105907 directory\ee_ff_gg_hh.pdf
to have this:
abc_def_c_hil.pdf
aa_bb_cc_dd.pdf
ee_ff_gg_hh.pdf
thank you in advance
I take a list of zip file using command "7za.exe l file.zip", so I want use gawk to clean output
Ho can I clean this result:
2016-04-09 13:16:45 ....A 105907 123412 abc_def_c_hil.pdf
2016-04-09 13:16:45 ....A 105907 aa_bb_cc_dd.pdf
2016-04-09 13:16:45 ....A 105907 directory\ee_ff_gg_hh.pdf
to have this:
abc_def_c_hil.pdf
aa_bb_cc_dd.pdf
ee_ff_gg_hh.pdf
thank you in advance