假设目标目录路径为 /path/to/destination/。 使用gunzip 命令进行解压操作: 使用gunzip 命令的 -c 选项将解压后的内容输出到标准输出,然后通过重定向(>)将内容写入到目标目录下的新文件中。 指定解压后的文件输出到目标目录: 由于gunzip 默认会删除原始的 gzip 文件并生成同名的不带 .gz 后缀的文件,所以我们...
gunzip -c example.gz > /path/to/target/example ``` 在这个命令中,-c选项表示将解压缩后的内容输出到标准输出。接着是要解压的压缩文件example.gz。最后,>表示将标准输出重定向到指定的文件,这里我们将解压后的文件存放到/target目录下并重命名为example。 另一种常用的方法是使用gunzip命令的-i选项,该选项...
# gunzip -c /root/test.gz > ./test.txt zip 命令: # zip test.zip test.txt 它会将 test.txt 文件压缩为 test.zip ,当然也可以指定压缩包的目录,例如 /root/test.zip # unzip test.zip 它会默认将文件解压到当前目录,如果要解压到指定目录,可以加上 -d 选项 # unzip test.zip -d /root/...
# gunzip -c /root/test.gz > ./test.txt zip 命令: # zip test.zip test.txt 它会将 test.txt 文件压缩为 test.zip ,当然也可以指定压缩包的目录,例如 /root/test.zip # unzip test.zip 它会默认将文件解压到当前目录,如果要解压到指定目录,可以加上 -d 选项 # unzip test.zip -d /root/ 参考...
gunzip 和 unzip 解压文件到指定的目录 Linux 常用的压缩命令有 gzip 和 zip,两种压缩包的结尾不同:zip 压缩的后文件是 *.zip ,而 gzip 压缩后的文件 *.gz 相应的解压缩命令则是 gunzip 和 unzip gzip 命令: # gzip test.txt 它会将文件压缩为文件 test.txt.gz,原来的文件则没有了,解压缩也一样 ...
# gunzip -c /root/test.gz > ./test.txt zip 命令: # zip test.zip test.txt 它会将 test.txt 文件压缩为 test.zip ,当然也可以指定压缩包的目录,例如 /root/test.zip # unzip test.zip 它会默认将文件解压到当前目录,如果要解压到指定目录,可以加上 -d 选项 ...
# gunzip -c /root/test.gz > ./test.txt zip 命令: # zip test.zip test.txt 它会将 test.txt 文件压缩为 test.zip ,当然也可以指定压缩包的目录,例如 /root/test.zip # unzip test.zip 它会默认将文件解压到当前目录,如果要解压到指定目录,可以加上 -d 选项 ...
# gunzip -c /root/test.gz > ./test.txt zip 命令: # zip test.zip test.txt 它会将 test.txt 文件压缩为 test.zip ,当然也可以指定压缩包的目录,例如 /root/test.zip # unzip test.zip 它会默认将文件解压到当前目录,如果要解压到指定目录,可以加上 -d 选项 # unzip test.zip -d /root/ ...
而且可以将压缩包放到任何目录中,解压缩也一样 # gunzip -c /root/test.gz > ./test.txt zip 命令: # zip test.zip test.txt 它会将 test.txt 文件压缩为 test.zip ,当然也可以指定压缩包的目录,例如 /root/test.zip # unzip test.zip 它会默认将文件解压到当前目录,如果要解压到指定目录,可以加上...
gunzip 和 unzip 解压文件到指定的目录 Linux 常用的压缩命令有 gzip 和 zip,两种压缩包的结尾不同:zip 压缩的后文件是 *.zip ,而 gzip 压缩后的文件 *.gz 相应的解压缩命令则是 gunzip 和 unzip gzip 命令: # gzip test.txt 它会将文件压缩为文件 test.txt.gz,原来的文件则没有了,解压缩也一样...