tar-compression

Installation
SKILL.md

归档与压缩

概述

tar/gzip/xz 归档压缩、分卷备份技能。

tar 基础

创建归档

# 创建 tar 归档
tar -cvf archive.tar /path/to/dir

# 创建并 gzip 压缩
tar -czvf archive.tar.gz /path/to/dir

# 创建并 bzip2 压缩
tar -cjvf archive.tar.bz2 /path/to/dir
Installs
69
GitHub Stars
47
First Seen
Jan 24, 2026
tar-compression — chaterm/terminal-skills