Parece que você precisa apenas dos arquivos estimate.txt
nas subpastas de primeiro nível de cnt
.
Você pode usar curingas para fazer isso; apenas execute zip -r cnt.zip cnt/*/estimate.txt
.
Veja um exemplo:
$ ls -R cnt
cnt:
a b c d e f g h i j k l m n o p q r s t u v w x y z
cnt/a:
estimate.txt otherfolder
cnt/a/otherfolder:
file1 file2
cnt/b:
estimate.txt otherfolder
cnt/b/otherfolder:
file1 file2
...
cnt/y/otherfolder:
file1 file2
cnt/z:
estimate.txt otherfolder
cnt/z/otherfolder:
file1 file2
$ zip -r cnt.zip cnt/*/estimate.txt
adding: cnt/a/estimate.txt (stored 0%)
adding: cnt/b/estimate.txt (stored 0%)
...
adding: cnt/y/estimate.txt (stored 0%)
adding: cnt/z/estimate.txt (stored 0%)