find "$(pwd)" -name *.zip | while read -r; do
echo -n "$REPLY\t";
unzip -l $REPLY | tail -1 | awk '{print $1}';
done
find "$(pwd)" -name *.7z | while read -r; do
echo -n "$REPLY\t";
7z l $REPLY | tail -1 | awk '{print $3}';
done
find "$(pwd)" -name *.zip | while read -r; do
echo -n "$REPLY\t";
unzip -l $REPLY | tail -1 | awk '{print $1}';
done
find "$(pwd)" -name *.7z | while read -r; do
echo -n "$REPLY\t";
7z l $REPLY | tail -1 | awk '{print $3}';
done