linux批量解压tar.gz文件
bash
for file in *.tar.gz; do
tar -zxvf "$file"
done
for file in *.tar.gz; do
tar -zxvf "$file"
done