Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 debian 6.0 中压缩一个文件而不安装任何额外的工具(即 apt-get zip)。
谁能告诉我这是否可行,如果可以,shell / bash 中的命令是什么。
我找到的所有教程都告诉我安装额外的软件,但我确信 Debian 必须捆绑某种归档工具。
几乎每个新发行版都包含 tar。利用:
tar cvzf filea fileb filec
这将创建 tar.gzip 存档。如果你只想要arch.tar,从参数中删除z 。
你可以使用 zip 或 tar 这个
zip -r filename.zip folderName tar -czvf filename.tar.gz folderName