不解压直接查看tar包内容

1. file.tar.gz
gzip -dc file.tar.gz | tar tvf -

2. file.tar.bz2
bzip2 -dc file.tar.bz2 |tar tvf -

3. file.tar
tar tvf file.tar
时间: 2024-10-12 03:38:30

不解压直接查看tar包内容的相关文章

不解压,查看文件内容

不解压,查看文件内容 tar xzfO 压缩文件.tar.gz 指定压缩包内文件.txt |head -n100 原文地址:https://www.cnblogs.com/baolin2200/p/9235270.html

find 查找文件 -exec 然后压缩 查看tar包的内容

[[email protected] Downloads]# find ./ -name "banner*" -exec tar -cvf k.tar "{}" \; ./banner.zip ./banner 2/ ./banner 2/[email protected] ./banner 2/[email protected] ./banner 2/.DS_Store ./banner 2/[email protected] ./banner 2/[email 

查看jar包内容

查看jar包内容 查看jar包内容的基本命令: jar tf jar-file 参数解释: The t option indicates that you want to view the table of contents of the JAR file. The f option indicates that the JAR file whose contents are to be viewed is specified on the command line. The jar-file 

linux不解压超大日志gz包直接查找特定内容

gzip -dc myfile.gz | grep 'Exception' | more 或者 gzip -c myfile.gz | grep 'Exception' | more

升级Linux tar &&解决某用tar解压失败的tar包

今天解压个文件,出来很多这样的: /bin/tar: Ignoring unknown extended header keyword `SCHILY.dev'/bin/tar: Ignoring unknown extended header keyword `SCHILY.ino'/bin/tar: Ignoring unknown extended header keyword `SCHILY.nlink' 查阅资料,说是需要更新我的tar版本 找到官网: https://ftp.gnu.

tar 包解压命令

Linux下最常用的打包程序就是tar了,使用tar程序打出来的包我们常称为tar包,tar包文件的命令通常都是以.tar结尾的.生成tar包后,就可以用其它的程序来进 行压缩了,所以首先就来讲讲tar命令的基本用法: tar命令的选项有很多(用man tar可以查看到),但常用的就那么几个选项,下面 来举例说明一下: # tar -cf all.tar *.jpg 这条命令是将所有.jpg的文件打成一个名为all.tar的包.-c是表示产生新的包 ,-f指定包的文件名. # tar -rf a

tar只解压tar包中某个文件

如果tar包很大,而只想解压出其中某个文件.方法如下: 只想解压出Redis-1.972.tar 中的Changes文件,来查看有哪些更改. [[email protected] ~]# tar -tf Redis-1.972.tar Redis-1.972 Redis-1.972/README Redis-1.972/Changes Redis-1.972/LICENSE Redis-1.972/dist.ini Redis-1.972/META.yml Redis-1.972/MANIFES

suse 9 tar解压tar包失败

最近遇到一个这样的问题 在SUSE 9下 我通过 smbclient 下载的文件 解压总是失败 然而在SUSE10下 却发现是正常的情况 所以准备升级 tar 当我去rpmfind.net把tar 下载回来后 rpm升级安装的时候 却提示我要升级glibc 好吧 当我把glibc下载之后 却又提示我升级kernel 好吧 我觉得我如果要升级这么多东西 很可能要影响其他未知依赖 最后休息了一下 想到了会不会是smbclient没有bin模式 这样下载之后的包 tar 解压不开 于是想到了 把文件上

如何只解压TAR包或ZIP包里的某一个文件

zip 首先得查看你想要解压文件的路径: unzip -l unzip -v 查看好路径之后解压: unzip -p abc.zip aaa/bbb/ccc.txt -d /tmp 配注:向zip里添加文件: zip -m abc.zip abc.txt压缩时排除某个文件:zip -r abc.zip /abc -x /abc/lych.txt删除解压包里的某个文件:zip -d abc.zip lych.txt tar包 首先得查看你想要解压文件的路径: tar -tf tar -xvpf a