Uso anche "cat nome_file | gzip -d | wc -l"
Puoi usare zgrep
contare anche le righe (o meglio l'inizio delle righe)
zgrep -c ^ file.txt
Prova questo zwc script:
#! /bin/bash --
for F in "[email protected]"; do
echo "$(zcat -f <"$F" | wc -l) $F"
done