I am trying to read the contents of the file inside the xar file without extracting them using the command line.
When I run the command,
xar -tf filename.xar | grep -i 'info'
it list all the file that I am after.
But when I try to read the contents of those file using,
cat `xar -tf filename.xar | grep -i 'info'`
I get the error message saying cat: filename: No such file or directory