I'm running the following code in powershell
$list=C:\"Program Files (x86)"\WinRAR\unRAR.exe v -v $absolutePath
$list
And this is my output:
Archivo C:\Users\Maxi\Desktop\pruebaz\pruebaz.rar
Ruta/Comentario
Tamaño Compresión Fecha Hora Atrib CRC Métod-Ver-
-------------------------------------------------------------------------------
pruebaz\chu.jpg
63171 61575 97% 19-09-13 17:10 .....A. B5F99319 m3b 2.9
pruebaz\nada\hola\cruci.jpg
55306 54496 98% 16-11-13 02:03 .....A. 87537917 m3b 2.9
pruebaz\nada\hola
0 0 0% 15-07-14 23:01 .D..... 00000000 m0 2.0
pruebaz\nada
0 0 0% 15-07-14 23:01 .D..... 00000000 m0 2.0
pruebaz
0 0 0% 15-07-14 23:01 .D..... 00000000 m0 2.0
-------------------------------------------------------------------------------
5 118477 116071 97%
I need help filtering this to get the following:
pruebaz\chu.jpg
pruebaz\nada\hola\cruci.jpg
pruebaz\nada\hola
pruebaz\nada
pruebaz
Thanks.