The problem is as follows. There are three tar.gz archives with data. One of them is retrieved without problems, the rest are not.
Began to understand what was happening. When you enter the file command on a normal archive, which is unpacked without problems, it gives the following:
file wav_data.aa.tar.gz wav_data.aa.tar.gz: gzip compressed data, last modified: Tue Aug 25 12:38:40 2015, from Unix those. it's okay
If I look at the information on another file (problem), then
file wav_data.ab.tar.gz wav_data.ab.tar.gz: data How to solve a problem? The data is whole, downloaded from the Stanford repository.
cat wav_data*.tar.gz > wav_data.tar.gz; tar -xzf wav_data.tar.gzcat wav_data*.tar.gz > wav_data.tar.gz; tar -xzf wav_data.tar.gz- will there be a successful result? - MAN69