-1

私のシステムには多くのzipファイルがあります。それらすべてのシンボルの量を計算する必要があります。しかし、私のコマンドは機能しません:

[zola@n.korea ~]$ find /RAID/s.korea/onlyzip/ -name *.zip -type f -exec zcat {} \; |wc -c

gzip: /RAID/s.korea/onlyzip/00/node/2015-03.compare15.zip has more than one entry--rest ignored
gzip: /RAID/s.korea/onlyzip/00/node/2015-03.compare16.zip has more than one entry--rest ignored
gzip: /RAID/s.korea/onlyzip/00/node/2015-03.compare17.zip has more than one entry--rest ignored
gzip: /RAID/s.korea/onlyzip/00/node/2015-03.compare18.zip has more than one entry--rest ignored
gzip: /RAID/s.korea/onlyzip/00/node/2015-03.compare19.zip has more than one 

しかし、zcat /RAID/s.korea/onlyzip/00/node/2015-03.compare19.zip だけでうまく動作します。私を手伝ってくれますか?

4

1 に答える 1

0

オプションを使用でき--quietます:

find /RAID/s.korea/onlyzip/ -name "*.zip" -type f -exec zcat -q {} \; |wc -c

" "柄のまわりにご注意ください。

于 2015-03-31T12:14:14.460 に答える