python解压tar文件
#!/usr/bin/env python import tarfile tar = tarfile.open("a.tar.gz") tar.extractall("xx/yy") tar.close()