34 lines
616 B
Plaintext
34 lines
616 B
Plaintext
# mtar - Minitel Archiver
|
|
## Usage
|
|
|
|
mtar -[crtxvz] <archivefile> [otherfile] [otherfile] [--csize=block size]
|
|
|
|
## Operations
|
|
|
|
x: extract archive
|
|
c: create archive
|
|
t: list contents of archive
|
|
|
|
## Flags
|
|
|
|
v: be verbose
|
|
z: use LZSS compression (requires liblz16)
|
|
|
|
## Extended options:
|
|
csize: compression input block size
|
|
|
|
## Examples
|
|
|
|
Extract archive *example.mtar*
|
|
|
|
mtar -x example.mtar
|
|
|
|
Show the files in compressed archive *example.mtar.lss*
|
|
|
|
mtar -tz example.mtar.lss
|
|
|
|
Create a compressed archive *example.mtar.lss* from file *fun* and folder *junk*
|
|
|
|
mtar -cz example.mtar.lss fun junk/
|
|
|