[root@localhost d6z]# ls
1.txt 2.txt
[root@localhost d6z]# wc -l 1.txt 2.txt
123139 1.txt
0 2.txt
123139 总用量
[root@localhost d6z]# gzip -d -c /tmp/11.txt.gz > /tmp/d6z/2.txt
gzip: /tmp/11.txt.gz: unexpected end of file
[root@localhost d6z]# ls /tmp/11.txt.gz
/tmp/11.txt.gz
[root@localhost d6z]# gzip -d -c /tmp/11.txt.gz > /tmp/d6z/3.txt
gzip: /tmp/11.txt.gz: unexpected end of file
[root@localhost d6z]# ls
1.txt 2.txt 3.txt
[root@localhost d6z]# wc -l 1.txt 2.txt 3.txt
123139 1.txt
0 2.txt
0 3.txt
123139 总用量
[root@localhost d6z]#
同学gzip解压文件出错,结论:文件损坏