# 查看压缩包内容
 tar tf aa.tar
 tar tf aa.tar |grep file
# 只解压一个文件 
 tar -xf aa.tar path/to/file
# 只解压一个文件 file 到目录 abc
 tar -C abc -xf aa.tar path/to/file