This makes use of 7zip to extract files and sed to process the output. Both are external utilities. It is usual to find these files in unix but not in windows. But you can find them online.
7zip l *.zip *.ttf |sed -ne "/Path.*$/h;/ttf/{;p;g;p;};/TTF/{;p;g;p;}"
Explanation: For each .zip file, 7zip produces an output that starts with “Path=” followed by file path and name. We start by storing the lines including the word “Path” with sed “hold” command (/Path.*$/h).
Then, when a file including “ttf” is output in the listing, we: